-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCogsleyServices-SalesData-2012.csv
More file actions
We can't make this file beautiful and searchable because it's too large.
2102 lines (2102 loc) · 535 KB
/
CogsleyServices-SalesData-2012.csv
File metadata and controls
2102 lines (2102 loc) · 535 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
7242,51648,2012-01-01,2012-01-01,45,6750,0.03,150,6547.5,Roy Peterman,Broadcom Corporation,Technology,Semiconductors,Hays,67601,Kansas,Central,2012-01-08,7,Consulting - Business Model,Consulting,Java,Jacob Manziel,Josh Martinez,57,1,0.62
7243,51648,2012-01-01,2012-01-01,50,5500,0.08,110,5060,Roy Peterman,Broadcom Corporation,Technology,Semiconductors,Hays,67601,Kansas,Central,2012-01-06,5,Development - Python,Development,Python,Ethan Bird,Josh Martinez,60,1,0.454545455
4075,29030,2012-01-02,2012-01-01,10,1200,0.05,120,1140,Roy Peterman,Broadcom Corporation,Technology,Semiconductors,Granite City,62040,Illinois,Central,2012-01-03,1,Development - Business Logic,Development,.Net,Daniel Tusk,Josh Martinez,45,1,0.625
6690,47591,2012-01-02,2012-01-01,27,5400,0.1,200,4860,Dario Wiediger,"Stericycle, Inc.",Basic Industries,Environmental Services,Sierra Vista,85635,Arizona,West,2012-01-03,1,Development - Big Data,Development,SQL,Mason Gibson,Bob Turner,71,1,0.645
7580,54214,2012-01-02,2012-01-01,38,5700,0.04,150,5472,Resi Gonzalez,Symantec Corporation,Technology,Computer Software: Prepackaged Software,Caldwell,83605,Idaho,West,2012-01-05,3,Consulting - Compensation,Consulting,Python,Mason Gibson,Bob Turner,71,1,0.526666667
1513,10945,2012-01-03,2012-01-01,14,2100,0.04,150,2016,Ralph Hernandez,Sirius XM Holdings Inc.,Consumer Services,Broadcasting,Lansing,60438,Illinois,Central,2012-01-05,2,Consulting - Market Research,Consulting,Market Research,William Bufont,Josh Martinez,62,1,0.586666667
2239,16164,2012-01-03,2012-01-01,22,2420,0.07,110,2250.6,Eva O'Carroll,Lam Research Corporation,Technology,Industrial Machinery/Components,Broomfield,80020,Colorado,West,2012-01-12,9,Development - PHP,Development,Market Research,Emily Taylor,Bob Turner,62,1,0.436363636
2240,16164,2012-01-03,2012-01-01,26,3120,0.08,120,2870.4,Eva O'Carroll,Lam Research Corporation,Technology,Industrial Machinery/Components,Broomfield,80020,Colorado,West,2012-01-10,7,Development - Business Logic,Development,Scala,Sophia Dixon,Bob Turner,71,1,0.408333333
2241,16164,2012-01-03,2012-01-01,26,3900,0.03,150,3783,Eva O'Carroll,Lam Research Corporation,Technology,Industrial Machinery/Components,Danville,40422,Kentucky,South,2012-01-07,4,Consulting - Strategy,Consulting,Tableau,Ethan Bird,Frank Mitchell,60,1,0.6
5017,35811,2012-01-03,2012-01-01,49,5390,0.1,110,4851,Chuck Bierner,"Intuitive Surgical, Inc.",Health Care,Industrial Specialties,Pahrump,89041,Nevada,West,2012-01-04,1,Development - PHP,Development,Python,Alexander Edison,Bob Turner,70,1,0.363636364
5018,35811,2012-01-03,2012-01-01,6,720,0.1,120,648,Chuck Bierner,"Intuitive Surgical, Inc.",Health Care,Industrial Specialties,Pahrump,89041,Nevada,West,2012-01-05,2,Development - Business Logic,Development,Python,Sophia Dixon,Bob Turner,71,1,0.408333333
6146,43494,2012-01-03,2012-01-01,2,300,0.09,150,273,Jill Huston,Intel Corporation,Technology,Semiconductors,Laguna Hills,92653,California,West,2012-01-04,1,Consulting - Strategy,Consulting,Database,Mia Moore,Bob Turner,51,1,0.66
7074,50471,2012-01-03,2012-01-01,25,3125,0.02,125,3062.5,Deborah Braxton,"Automatic Data Processing, Inc.",Technology,EDP Services,Revere,2151,MA,East,2012-01-05,2,Training - Development,Training,Business Logic,Sophia Dixon,Allen Young,71,1,0.432
985,7107,2012-01-04,2012-01-01,3,375,0.02,125,367.5,Steve Price,"Netflix, Inc.",Consumer Services,Consumer Electronics/Video Chains,Benton,72015,Arkansas,South,2012-01-04,0,Training - SQL,Training,Market Research,Mia Moore,Frank Mitchell,51,1,0.592
986,7107,2012-01-04,2012-01-01,3,330,0.06,110,310.2,Steve Price,"Netflix, Inc.",Consumer Services,Consumer Electronics/Video Chains,Bentonville,72712,Arkansas,South,2012-01-06,2,Development - Python,Development,SQL,Jayden Hamilton,Frank Mitchell,71,1,0.354545455
987,7107,2012-01-04,2012-01-01,32,6400,0.1,200,5760,Steve Price,"Netflix, Inc.",Consumer Services,Consumer Electronics/Video Chains,Bentonville,72712,Arkansas,South,2012-01-05,1,Development - Big Data,Development,Business Model,Jayden Hamilton,Frank Mitchell,71,1,0.645
4426,31555,2012-01-04,2012-01-01,38,4750,0,125,4750,Jill Hernandez,"Illumina, Inc.",Capital Goods,Biotechnology: Laboratory Analytical Instruments,Palm Beach Gardens,33403,Florida,South,2012-01-04,0,Training - SQL,Training,Python,Noah Smith,Frank Mitchell,59,1,0.528
4427,31555,2012-01-04,2012-01-01,5,750,0.02,150,735,Jill Hernandez,"Illumina, Inc.",Capital Goods,Biotechnology: Laboratory Analytical Instruments,Palm Beach Gardens,33403,Florida,South,2012-01-07,3,Consulting - Strategy,Consulting,Business Model,Sophia Dixon,Frank Mitchell,71,1,0.526666667
5588,39619,2012-01-04,2012-01-01,15,1875,0.02,125,1837.5,Ken Leslie,Avago Technologies Limited,Technology,Semiconductors,Rogers,72756,Arkansas,South,2012-01-08,4,Training - SQL,Training,Big Data,Emily Taylor,Frank Mitchell,62,1,0.504
6310,44646,2012-01-04,2012-01-01,47,9400,0.08,200,8648,Mark Reiter,"Netflix, Inc.",Consumer Services,Consumer Electronics/Video Chains,Owensboro,42301,Kentucky,South,2012-01-08,4,Development - Big Data,Development,Java,Jayden Hamilton,Frank Mitchell,71,1,0.645
7671,55011,2012-01-04,2012-01-01,48,5760,0.09,120,5241.6,Alejandro Christensen,Biogen Idec Inc.,Health Care,Biotechnology: Biological Products (No Diagnostic Substances),Lake Oswego,97035,Oregon,West,2012-01-05,1,Development - Business Logic,Development,Market Research,Mason Gibson,Bob Turner,71,1,0.408333333
7672,55011,2012-01-04,2012-01-01,18,2160,0.01,120,2138.4,Alejandro Christensen,Biogen Idec Inc.,Health Care,Biotechnology: Biological Products (No Diagnostic Substances),Lake Oswego,97035,Oregon,West,2012-01-05,1,Development - Business Logic,Development,PHP,Alexander Edison,Bob Turner,70,1,0.416666667
688,4800,2012-01-05,2012-01-01,4,640,0.05,160,608,Max Ducich,SanDisk Corporation,Technology,Electronic Components,Lindenhurst,11757,New York,East,2012-01-12,7,Development - Java,Development,Python,Noah Smith,Allen Young,59,1,0.63125
689,4800,2012-01-05,2012-01-01,17,3400,0.01,200,3366,Max Ducich,SanDisk Corporation,Technology,Electronic Components,Lindenhurst,11757,New York,East,2012-01-12,7,Development - Scala,Development,Front End Web,Sophia Dixon,Allen Young,71,1,0.645
690,4800,2012-01-05,2012-01-01,7,840,0.07,120,781.2,Max Ducich,SanDisk Corporation,Technology,Electronic Components,Lindenhurst,11757,New York,East,2012-01-10,5,Development - Business Logic,Development,Python,Jacob Manziel,Allen Young,57,1,0.525
785,5601,2012-01-05,2012-01-01,10,1250,0.1,125,1125,Gary Gainer,QUALCOMM Incorporated,Technology,Radio And Television Broadcasting And Communications Equipment,Fort Worth,76106,Texas,Central,2012-01-06,1,Training - SQL,Training,Javascript,Daniel Tusk,Josh Martinez,45,1,0.64
1440,10432,2012-01-05,2012-01-01,13,1950,0.08,150,1794,Sonia Kane,Marriott International,Consumer Services,Hotels/Resorts,Hutchinson,67501,Kansas,Central,2012-01-12,7,Consulting - Business Model,Consulting,Business Logic,Alexander Edison,Josh Martinez,70,1,0.533333333
1868,13444,2012-01-05,2012-01-01,33,3630,0.06,110,3412.2,Pete Collister,"Micron Technology, Inc.",Technology,Semiconductors,Owasso,74055,Oklahoma,Central,2012-01-08,3,Development - Python,Development,Development,Liam Franklin,Josh Martinez,52,1,0.527272727
2217,16036,2012-01-05,2012-01-01,28,5600,0.09,200,5096,Harold McCarthy,"American Airlines Group, Inc.",Transportation,Air Freight/Delivery Services,Dennis,2638,MA,East,2012-01-06,1,Development - Big Data,Development,Strategy,Emma Watson,Allen Young,67,1,0.665
2218,16036,2012-01-05,2012-01-01,28,4480,0.05,160,4256,Harold McCarthy,"American Airlines Group, Inc.",Transportation,Air Freight/Delivery Services,Lindenwold,8021,New Jersey,East,2012-01-07,2,Development - Java,Development,SQL,Jayden Hamilton,Allen Young,71,1,0.55625
2219,16036,2012-01-05,2012-01-01,10,1500,0.07,150,1395,Harold McCarthy,"American Airlines Group, Inc.",Transportation,Air Freight/Delivery Services,New Brunswick,8901,New Jersey,East,2012-01-06,1,Consulting - Market Research,Consulting,Strategy,Alexander Edison,Allen Young,70,1,0.533333333
2220,16036,2012-01-05,2012-01-01,33,6600,0.1,200,5940,Harold McCarthy,"American Airlines Group, Inc.",Transportation,Air Freight/Delivery Services,Palisades Park,7650,New Jersey,East,2012-01-06,1,Development - Big Data,Development,.Net,Michael Alister,Allen Young,68,1,0.66
3564,25442,2012-01-05,2012-01-01,32,3520,0.08,110,3238.4,George Carreira,"Staples, Inc.",Consumer Services,Other Specialty Stores,Cheshire,6408,Connecticut,East,2012-01-07,2,Development - Python,Development,Java,Mason Gibson,Allen Young,71,1,0.354545455
3565,25442,2012-01-05,2012-01-01,40,4400,0.02,110,4312,George Carreira,"Staples, Inc.",Consumer Services,Other Specialty Stores,Haverhill,1832,MA,East,2012-01-07,2,Development - Python,Development,Business Logic,Jacob Manziel,Allen Young,57,1,0.481818182
7369,52516,2012-01-05,2012-01-01,50,7500,0.08,150,6900,Scot Moffitt,Fastenal Company,Consumer Services,RETAIL: Building Materials,Milwaukee,53209,Wisconsin,Central,2012-01-05,0,Consulting - Strategy,Consulting,Business Model,Madison Hill,Josh Martinez,58,1,0.613333333
7370,52516,2012-01-05,2012-01-01,19,2660,0.08,140,2447.2,Scot Moffitt,Fastenal Company,Consumer Services,RETAIL: Building Materials,Neenah,54956,Wisconsin,Central,2012-01-08,3,Development - Front End Web,Development,Python,William Bufont,Josh Martinez,62,1,0.557142857
7924,56645,2012-01-06,2012-01-01,46,5060,0.02,110,4958.8,Harold Rosenblatt,Apple Inc.,Technology,Computer Manufacturing,Marion,46952,Indiana,Central,2012-01-06,0,Development - Python,Development,Python,Ethan Bird,Josh Martinez,60,1,0.454545455
7925,56645,2012-01-06,2012-01-01,42,5250,0.07,125,4882.5,Harold Rosenblatt,Apple Inc.,Technology,Computer Manufacturing,Marion,46952,Indiana,Central,2012-01-08,2,Training - Javascript,Training,Java,Elizabeth Carter,Josh Martinez,52,1,0.584
8087,57698,2012-01-06,2012-01-01,10,1700,0.05,170,1615,Patrick Fjeld,"Intuitive Surgical, Inc.",Health Care,Industrial Specialties,Tuscaloosa,35401,Alabama,South,2012-01-07,1,Development - .Net,Development,Python,Abigail Young,Frank Mitchell,50,1,0.705882353
8088,57698,2012-01-06,2012-01-01,13,2210,0.04,170,2121.6,Patrick Fjeld,"Intuitive Surgical, Inc.",Health Care,Industrial Specialties,Tuscaloosa,35401,Alabama,South,2012-01-08,2,Development - .Net,Development,Java,Ethan Bird,Frank Mitchell,60,1,0.647058824
6378,45284,2012-01-07,2012-01-01,7,840,0,120,840,Roger Tom,Altera Corporation,Technology,Semiconductors,Boise,83701,Idaho,West,2012-01-08,1,Development - Business Logic,Development,Business Logic,William Bufont,Bob Turner,62,1,0.483333333
7562,54115,2012-01-07,2012-01-01,24,4080,0.01,170,4039.2,Brian Mautz,"Analog Devices, Inc.",Technology,Semiconductors,Frankfort,46041,Indiana,Central,2012-01-12,5,Development - .Net,Development,Business Logic,Liam Franklin,Josh Martinez,52,1,0.694117647
7563,54115,2012-01-07,2012-01-01,39,6240,0.03,160,6052.8,Brian Mautz,"Analog Devices, Inc.",Technology,Semiconductors,Frankfort,46041,Indiana,Central,2012-01-12,5,Development - Java,Development,Market Research,Isabella Douglas,Josh Martinez,75,1,0.53125
755,5409,2012-01-08,2012-01-01,11,1210,0.01,110,1197.9,Don McCrary,Cerner Corporation,Technology,EDP Services,Burbank,60459,Illinois,Central,2012-01-13,5,Development - Python,Development,SQL,Emma Watson,Josh Martinez,67,1,0.390909091
969,7042,2012-01-08,2012-01-01,4,500,0.07,125,465,Dean Zrebassa,Apple Inc.,Technology,Computer Manufacturing,Redondo Beach,90278,California,West,2012-01-10,2,Training - Javascript,Training,SQL,Mason Gibson,Bob Turner,71,1,0.432
2058,14726,2012-01-08,2012-01-01,15,2250,0.07,150,2092.5,Ralph Hernandez,Sirius XM Holdings Inc.,Consumer Services,Broadcasting,Lansing,60438,Illinois,Central,2012-01-08,0,Consulting - Business Model,Consulting,Business Logic,Liam Franklin,Josh Martinez,52,1,0.653333333
3754,26818,2012-01-08,2012-01-01,23,3680,0.05,160,3496,Dionis Stewart,Celgene Corporation,Health Care,Major Pharmaceuticals,Commack,11725,New York,East,2012-01-09,1,Development - Java,Development,Python,Jacob Manziel,Allen Young,57,1,0.64375
3755,26818,2012-01-08,2012-01-01,5,850,0.01,170,841.5,Dionis Stewart,Celgene Corporation,Health Care,Major Pharmaceuticals,Port Chester,10573,New York,East,2012-01-10,2,Development - .Net,Development,Business Model,Daniel Tusk,Allen Young,45,1,0.735294118
3756,26818,2012-01-08,2012-01-01,36,5760,0.1,160,5184,Dionis Stewart,Celgene Corporation,Health Care,Major Pharmaceuticals,Port Chester,10573,New York,East,2012-01-09,1,Development - Java,Development,Python,Abigail Young,Allen Young,50,1,0.6875
6050,42886,2012-01-08,2012-01-01,42,8400,0.02,200,8232,Kristen Golden,Cerner Corporation,Technology,EDP Services,Tupelo,38801,Mississippi,South,2012-01-10,2,Development - Scala,Development,Development,Alexander Edison,Frank Mitchell,70,1,0.65
7588,54307,2012-01-08,2012-01-01,15,1875,0.01,125,1856.25,Lauren Bern,Cognizant Technology Solutions Corporation,Technology,EDP Services,Albuquerque,87105,New Mexico,West,2012-01-09,1,Training - SQL,Training,Java,Abigail Young,Bob Turner,50,1,0.6
7589,54307,2012-01-08,2012-01-01,14,1750,0.04,125,1680,Lauren Bern,Cognizant Technology Solutions Corporation,Technology,EDP Services,Albuquerque,87105,New Mexico,West,2012-01-09,1,Training - Javascript,Training,Business Model,Mason Gibson,Bob Turner,71,1,0.432
7590,54307,2012-01-08,2012-01-01,41,6560,0.08,160,6035.2,Lauren Bern,Cognizant Technology Solutions Corporation,Technology,EDP Services,Durango,81301,Colorado,West,2012-01-09,1,Development - Java,Development,Business Model,Emma Watson,Bob Turner,67,1,0.58125
8320,59456,2012-01-08,2012-01-01,30,5100,0.06,170,4794,Justin Gerbode,Symantec Corporation,Technology,Computer Software: Prepackaged Software,Pearl,39208,Mississippi,South,2012-01-08,0,Development - .Net,Development,Strategy,Emily Taylor,Frank Mitchell,62,1,0.635294118
2072,14820,2012-01-09,2012-01-01,39,5850,0.04,150,5616,Michael Olson,Viacom Inc.,Consumer Services,Television Services,Eau Claire,54703,Wisconsin,Central,2012-01-11,2,Consulting - Market Research,Consulting,Business Logic,Emma Watson,Josh Martinez,67,1,0.553333333
6838,48704,2012-01-09,2012-01-01,11,1650,0.01,150,1633.5,Kelly Bensley,"Applied Materials, Inc.",Technology,Semiconductors,Greer,29651,South Carolina,South,2012-01-10,1,Consulting - Market Research,Consulting,Front End Web,William Bufont,Frank Mitchell,62,1,0.586666667
7206,51424,2012-01-09,2012-01-01,48,6720,0.1,140,6048,Tony Lucas,Celgene Corporation,Health Care,Major Pharmaceuticals,Olympia,98502,Washington,West,2012-01-10,1,Development - Database,Development,Big Data,Mason Gibson,Bob Turner,71,1,0.492857143
7207,51424,2012-01-09,2012-01-01,5,1000,0.05,200,950,Tony Lucas,Celgene Corporation,Health Care,Major Pharmaceuticals,Olympia,98502,Washington,West,2012-01-11,2,Development - Big Data,Development,Strategy,Isabella Douglas,Bob Turner,75,1,0.625
1386,10053,2012-01-10,2012-01-01,31,4650,0,150,4650,Craig Braden,NVIDIA Corporation,Technology,Semiconductors,Nashville,37211,Tennessee,South,2012-01-13,3,Consulting - Business Model,Consulting,SQL,Jayden Hamilton,Frank Mitchell,71,1,0.526666667
1387,10053,2012-01-10,2012-01-01,44,5500,0,125,5500,Craig Braden,NVIDIA Corporation,Technology,Semiconductors,Nashville,37211,Tennessee,South,2012-01-12,2,Training - Javascript,Training,Java,William Bufont,Frank Mitchell,62,1,0.504
2515,18275,2012-01-10,2012-01-01,25,3125,0.07,125,2906.25,Helen Glantz,"Applied Materials, Inc.",Technology,Semiconductors,Pacifica,94044,California,West,2012-01-14,4,Training - SQL,Training,Business Logic,Elizabeth Carter,Bob Turner,52,1,0.584
4872,34662,2012-01-10,2012-01-01,35,7000,0.09,200,6370,Darrin Ulpright,"Tesla Motors, Inc.",Capital Goods,Auto Manufacturing,Elizabeth,7201,New Jersey,East,2012-01-12,2,Development - Big Data,Development,Javascript,Emily Taylor,Allen Young,62,1,0.69
6217,44033,2012-01-10,2012-01-01,45,5625,0.03,125,5456.25,Keith Dominguez,"Alexion Pharmaceuticals, Inc.",Health Care,Major Pharmaceuticals,Newark,7101,New Jersey,East,2012-01-12,2,Training - Javascript,Training,Front End Web,Michael Alister,Allen Young,68,1,0.456
3159,22663,2012-01-11,2012-01-01,35,4375,0.07,125,4068.75,Maria Wilson,Linear Technology Corporation,Technology,Semiconductors,Gladstone,64118,MO,Central,2012-01-11,0,Training - Development,Training,Database,Sophia Dixon,Josh Martinez,71,1,0.432
3160,22663,2012-01-11,2012-01-01,15,2250,0.08,150,2070,Maria Wilson,Linear Technology Corporation,Technology,Semiconductors,Gladstone,64118,MO,Central,2012-01-16,5,Consulting - Strategy,Consulting,.Net,Isabella Douglas,Josh Martinez,75,1,0.5
6218,44036,2012-01-11,2012-01-01,40,4800,0.01,120,4752,Alan Blumstein,"Activision Blizzard, Inc",Technology,Computer Software: Prepackaged Software,Tonawanda,14150,New York,East,2012-01-13,2,Development - Business Logic,Development,Big Data,Noah Smith,Allen Young,59,1,0.508333333
6726,47879,2012-01-11,2012-01-01,19,2090,0.08,110,1922.8,Tamara Gordon,Tractor Supply Company,Consumer Services,RETAIL: Building Materials,Twentynine Palms,92277,California,West,2012-01-12,1,Development - Python,Development,Business Model,Elizabeth Carter,Bob Turner,52,1,0.527272727
7285,51970,2012-01-11,2012-01-01,1,150,0.06,150,141,Allen Creighton,Costco Wholesale Corporation,Consumer Services,Department/Specialty Retail Stores,Arlington Heights,60004,Illinois,Central,2012-01-13,2,Consulting - Strategy,Consulting,Strategy,Abigail Young,Josh Martinez,50,1,0.666666667
7644,54786,2012-01-11,2012-01-01,30,6000,0.08,200,5520,Maribeth Jones,Marriott International,Consumer Services,Hotels/Resorts,Nicholasville,40356,Kentucky,South,2012-01-13,2,Development - Big Data,Development,Big Data,Ethan Bird,Frank Mitchell,60,1,0.7
8393,59969,2012-01-11,2012-01-01,42,4620,0.01,110,4573.8,Ed Yedwab,DISH Network Corporation,Consumer Services,Television Services,Benton,72015,Arkansas,South,2012-01-13,2,Development - PHP,Development,Python,Isabella Douglas,Frank Mitchell,75,1,0.318181818
8394,59969,2012-01-11,2012-01-01,16,3200,0,200,3200,Ed Yedwab,DISH Network Corporation,Consumer Services,Television Services,Benton,72015,Arkansas,South,2012-01-12,1,Development - Big Data,Development,Java,Isabella Douglas,Frank Mitchell,75,1,0.625
48,292,2012-01-12,2012-01-01,43,4730,0.08,110,4351.6,Valerie Pelletier,"Discovery Communications, Inc.",Consumer Services,Television Services,Taylors,29687,South Carolina,South,2012-01-13,1,Development - PHP,Development,PHP,Alexander Edison,Frank Mitchell,70,1,0.363636364
752,5382,2012-01-12,2012-01-01,30,3750,0.05,125,3562.5,Michelle Crier,"Automatic Data Processing, Inc.",Technology,EDP Services,Crofton,21114,Maryland,East,2012-01-19,7,Training - SQL,Training,Market Research,Sophia Dixon,Allen Young,71,1,0.432
1055,7783,2012-01-12,2012-01-01,3,480,0.03,160,465.6,Evan Elias,Liberty Interactive Corporation,Consumer Services,Catalog/Specialty Distribution,Boca Raton,33433,Florida,South,2012-01-13,1,Development - Java,Development,Scala,Emily Taylor,Frank Mitchell,62,1,0.6125
2953,21382,2012-01-12,2012-01-01,21,2625,0.04,125,2520,Andy Willingham,DIRECTV,Consumer Services,Telecommunications Equipment,Baton Rouge,70802,Louisiana,South,2012-01-14,2,Training - Development,Training,Front End Web,Michael Alister,Frank Mitchell,68,1,0.456
2954,21382,2012-01-12,2012-01-01,11,1650,0.08,150,1518,Andy Willingham,DIRECTV,Consumer Services,Telecommunications Equipment,Baton Rouge,70802,Louisiana,South,2012-01-14,2,Consulting - Business Model,Consulting,Business Model,Mason Gibson,Frank Mitchell,71,1,0.526666667
2955,21382,2012-01-12,2012-01-01,27,2970,0,110,2970,Andy Willingham,DIRECTV,Consumer Services,Telecommunications Equipment,Gainesville,76240,Texas,Central,2012-01-15,3,Development - Python,Development,Javascript,Ava Wilson,Josh Martinez,67,1,0.390909091
3991,28485,2012-01-12,2012-01-01,12,1440,0.07,120,1339.2,Giulietta Ferguson,Symantec Corporation,Technology,Computer Software: Prepackaged Software,Temecula,92592,California,West,2012-01-12,0,Development - Business Logic,Development,Java,Liam Franklin,Bob Turner,52,1,0.566666667
7187,51269,2012-01-12,2012-01-01,2,320,0,160,320,Mitch Smayling,Avago Technologies Limited,Technology,Semiconductors,Roswell,88201,New Mexico,West,2012-01-13,1,Development - Java,Development,Business Model,Emma Watson,Bob Turner,67,1,0.58125
7188,51269,2012-01-12,2012-01-01,20,2500,0.08,125,2300,Mitch Smayling,Avago Technologies Limited,Technology,Semiconductors,Santa Fe,87505,New Mexico,West,2012-01-13,1,Training - SQL,Training,Scala,Elizabeth Carter,Bob Turner,52,1,0.584
904,6501,2012-01-13,2012-01-01,35,3850,0.06,110,3619,Arianne Norris,KLA-Tencor Corporation,Capital Goods,Electronic Components,Maryville,37804,Tennessee,South,2012-01-15,2,Development - Python,Development,Tableau,Jayden Hamilton,Frank Mitchell,71,1,0.354545455
905,6501,2012-01-13,2012-01-01,46,6900,0.09,150,6279,Arianne Norris,KLA-Tencor Corporation,Capital Goods,Electronic Components,Memphis,38109,Tennessee,South,2012-01-15,2,Consulting - Market Research,Consulting,Java,Ethan Bird,Frank Mitchell,60,1,0.6
3196,22914,2012-01-13,2012-01-01,30,5100,0.07,170,4743,Adam Phonely,"Automatic Data Processing, Inc.",Technology,EDP Services,Laguna Niguel,92677,California,West,2012-01-14,1,Development - .Net,Development,Big Data,Ethan Bird,Bob Turner,60,1,0.647058824
7300,52068,2012-01-13,2012-01-01,31,4960,0.04,160,4761.6,Peter Abelman,NVIDIA Corporation,Technology,Semiconductors,Columbus,31907,Georgia,South,2012-01-13,0,Development - Java,Development,Development,Abigail Young,Frank Mitchell,50,1,0.6875
7301,52068,2012-01-13,2012-01-01,47,7050,0.01,150,6979.5,Peter Abelman,NVIDIA Corporation,Technology,Semiconductors,Columbus,31907,Georgia,South,2012-01-13,0,Consulting - Strategy,Consulting,Market Research,Olivia Sullivan,Frank Mitchell,53,1,0.646666667
7302,52068,2012-01-13,2012-01-01,21,2625,0.07,125,2441.25,Peter Abelman,NVIDIA Corporation,Technology,Semiconductors,Dalton,30721,Georgia,South,2012-01-14,1,Training - Tableau,Training,Scala,William Bufont,Frank Mitchell,62,1,0.504
7303,52068,2012-01-13,2012-01-01,17,2125,0.07,125,1976.25,Peter Abelman,NVIDIA Corporation,Technology,Semiconductors,Dalton,30721,Georgia,South,2012-01-15,2,Training - Development,Training,Business Logic,Daniel Tusk,Frank Mitchell,45,1,0.64
5103,36357,2012-01-14,2012-01-01,38,5700,0.01,150,5643,Clay Anderson,Lam Research Corporation,Technology,Industrial Machinery/Components,Vancouver,98661,Washington,West,2012-01-15,1,Consulting - Compensation,Consulting,Big Data,Mia Moore,Bob Turner,51,1,0.66
1815,13027,2012-01-15,2012-01-01,42,4620,0.03,110,4481.4,Fred Collins,PACCAR Inc.,Capital Goods,Auto Manufacturing,Bridgeton,8302,New Jersey,East,2012-01-17,2,Development - Python,Development,Compensation,Elizabeth Carter,Allen Young,52,1,0.527272727
2337,16807,2012-01-15,2012-01-01,48,5280,0.08,110,4857.6,Quincy Patterson,"Ross Stores, Inc.",Consumer Services,Clothing/Shoe/Accessory Stores,Avondale,85323,Arizona,West,2012-01-16,1,Development - Python,Development,Python,Noah Smith,Bob Turner,59,1,0.463636364
2338,16807,2012-01-15,2012-01-01,30,3300,0.09,110,3003,Quincy Patterson,"Ross Stores, Inc.",Consumer Services,Clothing/Shoe/Accessory Stores,Bullhead City,86442,Arizona,West,2012-01-17,2,Development - Python,Development,.Net,Daniel Tusk,Bob Turner,45,1,0.590909091
548,3685,2012-01-16,2012-01-01,29,3480,0,120,3480,Mike Lanier,"Activision Blizzard, Inc",Technology,Computer Software: Prepackaged Software,Grand Rapids,49505,Michigan,Central,2012-01-17,1,Development - Business Logic,Development,Scala,Mia Moore,Josh Martinez,51,1,0.575
1313,9632,2012-01-16,2012-01-01,33,5280,0.09,160,4804.8,Andrew Love,DISH Network Corporation,Consumer Services,Television Services,Redmond,98052,Washington,West,2012-01-20,4,Development - Java,Development,Development,Mia Moore,Bob Turner,51,1,0.68125
3246,23268,2012-01-16,2012-01-01,5,550,0.02,110,539,Pierre Bellavance,"Regeneron Pharmaceuticals, Inc.",Health Care,Major Pharmaceuticals,Biddeford,4005,Maine,East,2012-01-18,2,Development - Python,Development,PHP,William Bufont,Allen Young,62,1,0.436363636
3247,23268,2012-01-16,2012-01-01,14,1540,0.09,110,1401.4,Pierre Bellavance,"Regeneron Pharmaceuticals, Inc.",Health Care,Major Pharmaceuticals,Madison,7940,New Jersey,East,2012-01-18,2,Development - Python,Development,Database,Mia Moore,Allen Young,51,1,0.536363636
4080,29090,2012-01-16,2012-01-01,24,4800,0.02,200,4704,Muhammed Wilson,Broadcom Corporation,Technology,Semiconductors,Anaheim,92804,California,West,2012-01-17,1,Development - Scala,Development,Strategy,Michael Alister,Bob Turner,68,1,0.66
4081,29090,2012-01-16,2012-01-01,36,7200,0.02,200,7056,Muhammed Wilson,Broadcom Corporation,Technology,Semiconductors,Anaheim,92804,California,West,2012-01-16,0,Development - Big Data,Development,Python,Daniel Tusk,Bob Turner,45,1,0.775
4173,29573,2012-01-16,2012-01-01,43,4730,0.05,110,4493.5,Michael Olson,Viacom Inc.,Consumer Services,Television Services,Fitchburg,53713,Wisconsin,Central,2012-01-18,2,Development - Python,Development,Java,Emma Watson,Josh Martinez,67,1,0.390909091
2159,15491,2012-01-18,2012-01-01,5,750,0.01,150,742.5,Michael Goranitis,"Whole Foods Market, Inc.",Consumer Services,Food Chains,Long Beach,39560,Mississippi,South,2012-01-18,0,Consulting - Market Research,Consulting,Javascript,Mason Gibson,Frank Mitchell,71,1,0.526666667
6035,42753,2012-01-18,2012-01-01,45,6750,0.1,150,6075,Anthony Haberlin,Intuit Inc.,Technology,Computer Software: Prepackaged Software,Fountain,80817,Colorado,West,2012-01-20,2,Consulting - Market Research,Consulting,PHP,Michael Alister,Bob Turner,68,1,0.546666667
7153,51044,2012-01-18,2012-01-01,17,1870,0.1,110,1683,Linda Brennan,Electronic Arts Inc.,Technology,Computer Software: Prepackaged Software,Palm Bay,32905,Florida,South,2012-01-18,0,Development - PHP,Development,Java,Daniel Tusk,Frank Mitchell,45,1,0.590909091
7154,51044,2012-01-18,2012-01-01,26,3250,0.07,125,3022.5,Linda Brennan,Electronic Arts Inc.,Technology,Computer Software: Prepackaged Software,Palm Beach Gardens,33403,Florida,South,2012-01-22,4,Training - Development,Training,.Net,Olivia Sullivan,Frank Mitchell,53,1,0.576
7155,51044,2012-01-18,2012-01-01,19,2280,0.01,120,2257.2,Linda Brennan,Electronic Arts Inc.,Technology,Computer Software: Prepackaged Software,Palm Beach Gardens,33403,Florida,South,2012-01-25,7,Development - Business Logic,Development,Compensation,Madison Hill,Frank Mitchell,58,1,0.516666667
7406,52837,2012-01-18,2012-01-01,32,6400,0.08,200,5888,Julie Grinstein,"Staples, Inc.",Consumer Services,Other Specialty Stores,Manchester,3101,New Hampshire,East,2012-01-20,2,Development - Big Data,Development,Database,Daniel Tusk,Allen Young,45,1,0.775
954,6886,2012-01-19,2012-01-01,46,9200,0.08,200,8464,Maureen Sundaresam,Starbucks Corporation,Consumer Services,Restaurants,Citrus Heights,95610,California,West,2012-01-20,1,Development - Big Data,Development,SQL,Mason Gibson,Bob Turner,71,1,0.645
1093,8034,2012-01-19,2012-01-01,31,5270,0.01,170,5217.3,Dennis Chand,"Activision Blizzard, Inc",Technology,Computer Software: Prepackaged Software,Chapel Hill,27514,North Carolina,South,2012-01-19,0,Development - .Net,Development,Python,Noah Smith,Frank Mitchell,59,1,0.652941176
1094,8034,2012-01-19,2012-01-01,13,1560,0.02,120,1528.8,Dennis Chand,"Activision Blizzard, Inc",Technology,Computer Software: Prepackaged Software,Chapel Hill,27514,North Carolina,South,2012-01-20,1,Development - Business Logic,Development,Market Research,Ava Wilson,Frank Mitchell,67,1,0.441666667
1095,8034,2012-01-19,2012-01-01,36,4500,0.08,125,4140,Dennis Chand,"Activision Blizzard, Inc",Technology,Computer Software: Prepackaged Software,Chapel Hill,27514,North Carolina,South,2012-01-21,2,Training - Javascript,Training,Scala,Michael Alister,Frank Mitchell,68,1,0.456
1660,11969,2012-01-19,2012-01-01,16,3200,0.08,200,2944,Ivan Wooten,Check Point Software Technologies Ltd.,Technology,Computer Software: Prepackaged Software,Hopkins,55305,Minnesota,Central,2012-01-20,1,Development - Big Data,Development,SQL,Jacob Manziel,Josh Martinez,57,1,0.715
1661,11969,2012-01-19,2012-01-01,9,1125,0.03,125,1091.25,Ivan Wooten,Check Point Software Technologies Ltd.,Technology,Computer Software: Prepackaged Software,Hopkins,55305,Minnesota,Central,2012-01-21,2,Training - Javascript,Training,Python,Ava Wilson,Josh Martinez,67,1,0.464
1662,11969,2012-01-19,2012-01-01,42,5250,0.1,125,4725,Ivan Wooten,Check Point Software Technologies Ltd.,Technology,Computer Software: Prepackaged Software,Hopkins,55305,Minnesota,Central,2012-01-21,2,Training - Javascript,Training,Market Research,Olivia Sullivan,Josh Martinez,53,1,0.576
4679,33285,2012-01-19,2012-01-01,5,1000,0.01,200,990,Michael Goranitis,"Whole Foods Market, Inc.",Consumer Services,Food Chains,Lehigh Acres,33971,Florida,South,2012-01-20,1,Development - Big Data,Development,Javascript,Abigail Young,Frank Mitchell,50,1,0.75
4781,33956,2012-01-19,2012-01-01,13,1625,0,125,1625,Aaron Matthias,Adobe Systems Incorporated,Technology,Computer Software: Prepackaged Software,Smithtown,11787,New York,East,2012-01-21,2,Training - SQL,Training,Market Research,Madison Hill,Allen Young,58,1,0.536
7068,50433,2012-01-19,2012-01-01,50,7500,0.1,150,6750,Jennifer Grady,"Fiserv, Inc.",Technology,EDP Services,Bartlesville,74006,Oklahoma,Central,2012-01-21,2,Consulting - Strategy,Consulting,Big Data,William Bufont,Josh Martinez,62,1,0.586666667
839,6016,2012-01-20,2012-01-01,19,2090,0.07,110,1943.7,Skye Foster,Lam Research Corporation,Technology,Industrial Machinery/Components,Lansing,60438,Illinois,Central,2012-01-20,0,Development - Python,Development,Scala,William Bufont,Josh Martinez,62,1,0.436363636
2716,19617,2012-01-20,2012-01-01,38,5700,0.03,150,5529,Jack Cacioppo,"Charter Communications, Inc.",Consumer Services,Television Services,New Albany,47150,Indiana,Central,2012-01-22,2,Consulting - Strategy,Consulting,Strategy,Liam Franklin,Josh Martinez,52,1,0.653333333
2717,19617,2012-01-20,2012-01-01,3,450,0.07,150,418.5,Jack Cacioppo,"Charter Communications, Inc.",Consumer Services,Television Services,New Albany,47150,Indiana,Central,2012-01-20,0,Consulting - Market Research,Consulting,.Net,Sophia Dixon,Josh Martinez,71,1,0.526666667
4108,29223,2012-01-20,2012-01-01,48,6000,0.04,125,5760,Greg Carlisle,Western Digital Corporation,Technology,Electronic Components,Severna Park,21146,Maryland,East,2012-01-22,2,Training - Development,Training,Market Research,Noah Smith,Allen Young,59,1,0.528
5449,38690,2012-01-20,2012-01-01,28,4200,0.02,150,4116,Shahid Bixby,Intel Corporation,Technology,Semiconductors,Port Huron,48060,Michigan,Central,2012-01-24,4,Consulting - Strategy,Consulting,Java,Noah Smith,Josh Martinez,59,1,0.606666667
1584,11428,2012-01-21,2012-01-01,16,1760,0,110,1760,Bill McGarr,SanDisk Corporation,Technology,Electronic Components,Bellevue,68005,Nebraska,Central,2012-01-21,0,Development - PHP,Development,Business Model,Mason Gibson,Josh Martinez,71,1,0.354545455
5734,40706,2012-01-21,2012-01-01,40,8000,0.08,200,7360,Nora Van,"Twenty-First Century Fox, Inc.",Consumer Services,Television Services,Winter Springs,32708,Florida,South,2012-01-22,1,Development - Scala,Development,Java,Emma Watson,Frank Mitchell,67,1,0.665
7769,55618,2012-01-21,2012-01-01,48,7200,0.04,150,6912,Brian Mautz,"Analog Devices, Inc.",Technology,Semiconductors,Frankfort,46041,Indiana,Central,2012-01-22,1,Consulting - Market Research,Consulting,.Net,Noah Smith,Josh Martinez,59,1,0.606666667
1334,9761,2012-01-22,2012-01-01,2,300,0.04,150,288,Todd Cacioppo,"Applied Materials, Inc.",Technology,Semiconductors,Waukesha,53186,Wisconsin,Central,2012-01-23,1,Consulting - Strategy,Consulting,Market Research,Emma Watson,Josh Martinez,67,1,0.553333333
1335,9761,2012-01-22,2012-01-01,23,2530,0.08,110,2327.6,Todd Cacioppo,"Applied Materials, Inc.",Technology,Semiconductors,Wausau,54401,Wisconsin,Central,2012-01-24,2,Development - Python,Development,Market Research,Abigail Young,Josh Martinez,50,1,0.545454545
4005,28582,2012-01-22,2012-01-01,40,6000,0.06,150,5640,Alex Daniels,Cerner Corporation,Technology,EDP Services,Lenexa,66215,Kansas,Central,2012-01-23,1,Consulting - Business Model,Consulting,Java,William Bufont,Josh Martinez,62,1,0.586666667
4006,28582,2012-01-22,2012-01-01,45,4950,0.02,110,4851,Alex Daniels,Cerner Corporation,Technology,EDP Services,Lenexa,66215,Kansas,Central,2012-01-23,1,Development - Python,Development,Big Data,Noah Smith,Josh Martinez,59,1,0.463636364
6294,44549,2012-01-22,2012-01-01,5,800,0.08,160,736,Bill Black,Seagate Technology.,Technology,Electronic Components,Long Beach,90805,California,West,2012-01-23,1,Development - Java,Development,Big Data,Ethan Bird,Bob Turner,60,1,0.625
389,2688,2012-01-23,2012-01-01,31,4650,0.1,150,4185,Thais Roper,VimpelCom Ltd.,Public Utilities,Telecommunications Equipment,Poinciana,34759,Florida,South,2012-01-24,1,Consulting - Market Research,Consulting,Scala,Emily Taylor,Frank Mitchell,62,1,0.586666667
390,2688,2012-01-23,2012-01-01,7,1050,0.09,150,955.5,Thais Roper,VimpelCom Ltd.,Public Utilities,Telecommunications Equipment,Pompano Beach,33068,Florida,South,2012-01-24,1,Consulting - Business Model,Consulting,Development,Michael Alister,Frank Mitchell,68,1,0.546666667
391,2688,2012-01-23,2012-01-01,11,1650,0.01,150,1633.5,Thais Roper,VimpelCom Ltd.,Public Utilities,Telecommunications Equipment,Pompano Beach,33068,Florida,South,2012-01-25,2,Consulting - Market Research,Consulting,Front End Web,Mason Gibson,Frank Mitchell,71,1,0.526666667
887,6373,2012-01-23,2012-01-01,1,170,0.01,170,168.3,Denise Catini,"Alexion Pharmaceuticals, Inc.",Health Care,Major Pharmaceuticals,Saco,4072,Maine,East,2012-01-24,1,Development - .Net,Development,Business Logic,Olivia Sullivan,Allen Young,53,1,0.688235294
5843,41441,2012-01-23,2012-01-01,41,6560,0,160,6560,Tom Lampkin,Bed Bath & Beyond Inc.,Consumer Services,Home Furnishings,Annapolis,21403,Maryland,East,2012-01-24,1,Development - Java,Development,Business Logic,Michael Alister,Allen Young,68,1,0.575
3645,26053,2012-01-24,2012-01-01,48,5280,0.07,110,4910.4,Cynthia Irving,The Priceline Group Inc.,Miscellaneous,Business Services,Wheat Ridge,80033,Colorado,West,2012-01-24,0,Development - Python,Development,SQL,Jacob Manziel,Bob Turner,57,1,0.481818182
6311,44647,2012-01-24,2012-01-01,47,5875,0.06,125,5522.5,Ross Stobb,Avago Technologies Limited,Technology,Semiconductors,Glen Burnie,21061,Maryland,East,2012-01-24,0,Training - Development,Training,Python,Noah Smith,Allen Young,59,1,0.528
6312,44647,2012-01-24,2012-01-01,24,4800,0.05,200,4560,Ross Stobb,Avago Technologies Limited,Technology,Semiconductors,Hagerstown,21740,Maryland,East,2012-01-28,4,Development - Big Data,Development,Javascript,Jacob Manziel,Allen Young,57,1,0.715
6494,46243,2012-01-24,2012-01-01,31,3410,0.02,110,3341.8,Maria Wilson,Linear Technology Corporation,Technology,Semiconductors,Hazelwood,63042,MO,Central,2012-01-26,2,Development - Python,Development,Business Logic,Alexander Edison,Josh Martinez,70,1,0.363636364
6495,46243,2012-01-24,2012-01-01,1,120,0.03,120,116.4,Maria Wilson,Linear Technology Corporation,Technology,Semiconductors,Hazelwood,63042,MO,Central,2012-01-29,5,Development - Business Logic,Development,Business Logic,Abigail Young,Josh Martinez,50,1,0.583333333
6496,46243,2012-01-24,2012-01-01,31,3720,0.05,120,3534,Maria Wilson,Linear Technology Corporation,Technology,Semiconductors,Hazelwood,63042,MO,Central,2012-01-31,7,Development - Business Logic,Development,Business Logic,Mia Moore,Josh Martinez,51,1,0.575
3748,26759,2012-01-25,2012-01-01,30,4800,0.03,160,4656,Bobby Lacy,"Tesla Motors, Inc.",Capital Goods,Auto Manufacturing,Omaha,68104,Nebraska,Central,2012-01-27,2,Development - Java,Development,Java,Jacob Manziel,Josh Martinez,57,1,0.64375
7573,54177,2012-01-25,2012-01-01,12,1920,0.1,160,1728,Maria Wilson,Linear Technology Corporation,Technology,Semiconductors,Independence,64055,MO,Central,2012-01-25,0,Development - Java,Development,Javascript,Daniel Tusk,Josh Martinez,45,1,0.71875
7574,54177,2012-01-25,2012-01-01,25,2750,0.1,110,2475,Maria Wilson,Linear Technology Corporation,Technology,Semiconductors,Independence,64055,MO,Central,2012-01-27,2,Development - Python,Development,Java,Alexander Edison,Josh Martinez,70,1,0.363636364
3944,28129,2012-01-26,2012-01-01,5,550,0.05,110,522.5,Nora Airdo,"Twenty-First Century Fox, Inc.",Consumer Services,Television Services,Atascadero,93422,California,West,2012-01-27,1,Development - Python,Development,Business Model,Isabella Douglas,Bob Turner,75,1,0.318181818
4632,32966,2012-01-26,2012-01-01,4,600,0.08,150,552,Steven Barreto,NVIDIA Corporation,Technology,Semiconductors,Sarasota,34239,Florida,South,2012-02-02,7,Consulting - Strategy,Consulting,Business Model,Sophia Dixon,Frank Mitchell,71,1,0.526666667
4633,32966,2012-01-26,2012-01-01,43,5160,0.01,120,5108.4,Steven Barreto,NVIDIA Corporation,Technology,Semiconductors,Sarasota,34239,Florida,South,2012-01-30,4,Development - Business Logic,Development,SQL,Liam Franklin,Frank Mitchell,52,1,0.566666667
6742,48003,2012-01-26,2012-01-01,30,4500,0.05,150,4275,Darren Perrino,Seagate Technology.,Technology,Electronic Components,Beaumont,77705,Texas,Central,2012-01-28,2,Consulting - Business Model,Consulting,.Net,Olivia Sullivan,Josh Martinez,53,1,0.646666667
6743,48003,2012-01-26,2012-01-01,12,1500,0.04,125,1440,Darren Perrino,Seagate Technology.,Technology,Electronic Components,Beaumont,77705,Texas,Central,2012-01-28,2,Training - SQL,Training,Market Research,Sophia Dixon,Josh Martinez,71,1,0.432
691,4804,2012-01-27,2012-01-01,13,1950,0,150,1950,Kean Collister,"Akamai Technologies, Inc.",Miscellaneous,Business Services,Paradise,95969,California,West,2012-01-28,1,Consulting - Business Model,Consulting,Development,Liam Franklin,Bob Turner,52,1,0.653333333
4373,31170,2012-01-27,2012-01-01,32,4800,0.09,150,4368,Suzanne Molinari,"Staples, Inc.",Consumer Services,Other Specialty Stores,Shreveport,71109,Louisiana,South,2012-01-29,2,Consulting - Business Model,Consulting,Strategy,Ava Wilson,Frank Mitchell,67,1,0.553333333
5111,36418,2012-01-27,2012-01-01,33,5280,0.08,160,4857.6,Robert Drucker,"Automatic Data Processing, Inc.",Technology,EDP Services,Newark,43055,Ohio,East,2012-01-28,1,Development - Java,Development,SQL,Jayden Hamilton,Allen Young,71,1,0.55625
5882,41760,2012-01-27,2012-01-01,21,3360,0.04,160,3225.6,Erica Gardner,Intuit Inc.,Technology,Computer Software: Prepackaged Software,Wenatchee,98801,Washington,West,2012-02-01,5,Development - Java,Development,Development,Noah Smith,Bob Turner,59,1,0.63125
5883,41760,2012-01-27,2012-01-01,22,2750,0,125,2750,Erica Gardner,Intuit Inc.,Technology,Computer Software: Prepackaged Software,Wenatchee,98801,Washington,West,2012-02-03,7,Training - SQL,Training,SQL,Ethan Bird,Bob Turner,60,1,0.52
5884,41760,2012-01-27,2012-01-01,7,1050,0.08,150,966,Erica Gardner,Intuit Inc.,Technology,Computer Software: Prepackaged Software,Wenatchee,98801,Washington,West,2012-02-01,5,Consulting - Market Research,Consulting,Development,Abigail Young,Bob Turner,50,1,0.666666667
5885,41760,2012-01-27,2012-01-01,40,6000,0.05,150,5700,Erica Gardner,Intuit Inc.,Technology,Computer Software: Prepackaged Software,Wenatchee,98801,Washington,West,2012-02-01,5,Consulting - Market Research,Consulting,Strategy,Jacob Manziel,Bob Turner,57,1,0.62
6456,45984,2012-01-27,2012-01-01,27,3240,0.01,120,3207.6,Janet Daniels,"Discovery Communications, Inc.",Consumer Services,Television Services,Auburn,4210,Maine,East,2012-01-29,2,Development - Business Logic,Development,SQL,Emily Taylor,Allen Young,62,1,0.483333333
1100,8070,2012-01-28,2012-01-01,14,1680,0,120,1680,Rick Coakley,Vodafone Group Plc,Public Utilities,Telecommunications Equipment,Douglasville,30135,Georgia,South,2012-01-29,1,Development - Business Logic,Development,Python,Emma Watson,Frank Mitchell,67,1,0.441666667
5125,36484,2012-01-28,2012-01-01,41,6150,0.01,150,6088.5,Cari Chung,"Baidu, Inc.",Technology,"Computer Software: Programming, Data Processing",Seguin,78155,Texas,Central,2012-01-29,1,Consulting - Market Research,Consulting,Front End Web,Sophia Dixon,Josh Martinez,71,1,0.526666667
6579,46852,2012-01-28,2012-01-01,46,6900,0.02,150,6762,Sean Witt,"Twenty-First Century Fox, Inc.",Consumer Services,Television Services,Homestead,33030,Florida,South,2012-01-30,2,Consulting - Business Model,Consulting,Business Model,Madison Hill,Frank Mitchell,58,1,0.613333333
6580,46852,2012-01-28,2012-01-01,44,6600,0.01,150,6534,Sean Witt,"Twenty-First Century Fox, Inc.",Consumer Services,Television Services,Homestead,33030,Florida,South,2012-01-29,1,Consulting - Business Model,Consulting,Java,Emma Watson,Frank Mitchell,67,1,0.553333333
464,3168,2012-01-29,2012-01-01,14,1750,0.04,125,1680,Jasper Galang,eBay Inc.,Miscellaneous,Business Services,Franklin Square,11010,New York,East,2012-02-03,5,Training - SQL,Training,Business Logic,Isabella Douglas,Allen Young,75,1,0.4
1275,9253,2012-01-30,2012-01-01,36,4500,0.05,125,4275,Daniel Price,SanDisk Corporation,Technology,Electronic Components,Roosevelt,11575,New York,East,2012-02-01,2,Training - SQL,Training,Java,Elizabeth Carter,Allen Young,52,1,0.584
1366,9925,2012-01-30,2012-01-01,43,6880,0.1,160,6192,Chad Bavinger,DIRECTV,Consumer Services,Telecommunications Equipment,Saint Paul,55106,Minnesota,Central,2012-02-02,3,Development - Java,Development,Front End Web,Sophia Dixon,Josh Martinez,71,1,0.55625
1367,9925,2012-01-30,2012-01-01,17,2720,0.07,160,2529.6,Chad Bavinger,DIRECTV,Consumer Services,Telecommunications Equipment,Saint Paul,55106,Minnesota,Central,2012-02-01,2,Development - Java,Development,Business Logic,Mason Gibson,Josh Martinez,71,1,0.55625
1368,9925,2012-01-30,2012-01-01,31,3720,0.02,120,3645.6,Chad Bavinger,DIRECTV,Consumer Services,Telecommunications Equipment,Saint Paul,55106,Minnesota,Central,2012-02-01,2,Development - Business Logic,Development,.Net,Mia Moore,Josh Martinez,51,1,0.575
2766,20003,2012-01-30,2012-01-01,39,5850,0.05,150,5557.5,Shirley Yotov,Linear Technology Corporation,Technology,Semiconductors,Minot,58701,North Dakota,Central,2012-01-31,1,Consulting - Business Model,Consulting,Development,Michael Alister,Josh Martinez,68,1,0.546666667
2767,20003,2012-01-30,2012-01-01,5,750,0.09,150,682.5,Shirley Yotov,Linear Technology Corporation,Technology,Semiconductors,Scarsdale,10583,New York,East,2012-02-01,2,Consulting - Market Research,Consulting,Javascript,Ethan Bird,Allen Young,60,1,0.6
6234,44167,2012-01-30,2012-01-01,23,4600,0.08,200,4232,Jim Nazzal,"Intuitive Surgical, Inc.",Health Care,Industrial Specialties,Burke,22015,Virginia,South,2012-01-31,1,Development - Big Data,Development,Tableau,Michael Alister,Frank Mitchell,68,1,0.66
7528,53795,2012-01-30,2012-01-01,40,4400,0.1,110,3960,Sandra Prescott,"Citrix Systems, Inc.",Technology,Computer Software: Prepackaged Software,Garfield Heights,44125,Ohio,East,2012-01-31,1,Development - Python,Development,Python,Mia Moore,Allen Young,51,1,0.536363636
7529,53795,2012-01-30,2012-01-01,21,3150,0.05,150,2992.5,Sandra Prescott,"Citrix Systems, Inc.",Technology,Computer Software: Prepackaged Software,Garfield Heights,44125,Ohio,East,2012-02-01,2,Consulting - Market Research,Consulting,Development,Mason Gibson,Allen Young,71,1,0.526666667
2805,20256,2012-01-31,2012-01-01,24,4800,0.01,200,4752,Roland Paige,"Alexion Pharmaceuticals, Inc.",Health Care,Major Pharmaceuticals,Lakeville,55044,Minnesota,Central,2012-02-05,5,Development - Big Data,Development,Big Data,Jayden Hamilton,Josh Martinez,71,1,0.645
5821,41312,2012-01-31,2012-01-01,21,3150,0.05,150,2992.5,Jonathan Phelps,NXP Semiconductors N.V.,Technology,Semiconductors,Frisco,75034,Texas,Central,2012-02-01,1,Consulting - Business Model,Consulting,Compensation,Mason Gibson,Josh Martinez,71,1,0.526666667
7550,54020,2012-01-31,2012-01-01,35,3850,0.05,110,3657.5,Jennifer Lee,"Facebook, Inc.",Technology,"Computer Software: Programming, Data Processing",Harrison,10528,New York,East,2012-02-04,4,Development - Python,Development,Big Data,Mason Gibson,Allen Young,71,1,0.354545455
7551,54020,2012-01-31,2012-01-01,43,4730,0.09,110,4304.3,Jennifer Lee,"Facebook, Inc.",Technology,"Computer Software: Programming, Data Processing",Harrison,10528,New York,East,2012-02-05,5,Development - Python,Development,SQL,Madison Hill,Allen Young,58,1,0.472727273
8016,57280,2012-01-31,2012-01-01,44,4840,0.03,110,4694.8,Dennis Chand,"Activision Blizzard, Inc",Technology,Computer Software: Prepackaged Software,Durham,27707,North Carolina,South,2012-02-01,1,Development - Python,Development,Java,Jayden Hamilton,Frank Mitchell,71,1,0.354545455
934,6757,2012-02-01,2012-02-01,27,5400,0.1,200,4860,Brooke Abelman,"Akamai Technologies, Inc.",Miscellaneous,Business Services,Portland,97206,Oregon,West,2012-02-03,2,Development - Big Data,Development,Python,Ava Wilson,Bob Turner,67,1,0.665
935,6757,2012-02-01,2012-02-01,11,1375,0.1,125,1237.5,Brooke Abelman,"Akamai Technologies, Inc.",Miscellaneous,Business Services,Portland,97206,Oregon,West,2012-02-02,1,Training - Javascript,Training,Python,Alexander Edison,Bob Turner,70,1,0.44
4845,34470,2012-02-01,2012-02-01,31,3875,0.08,125,3565,Vivek Brown,"Expeditors International of Washington, Inc.",Transportation,Oil Refining/Marketing,Baltimore,21215,Maryland,East,2012-02-02,1,Training - Tableau,Training,Market Research,Emily Taylor,Allen Young,62,1,0.504
7029,50148,2012-02-01,2012-02-01,9,1350,0,150,1350,Roy Schnelling,Biogen Idec Inc.,Health Care,Biotechnology: Biological Products (No Diagnostic Substances),Edmonds,98026,Washington,West,2012-02-03,2,Consulting - Strategy,Consulting,Javascript,Mia Moore,Bob Turner,51,1,0.66
8129,58113,2012-02-01,2012-02-01,48,7680,0.07,160,7142.4,Anemone Joy,eBay Inc.,Miscellaneous,Business Services,Corpus Christi,78415,Texas,Central,2012-02-03,2,Development - Java,Development,.Net,Michael Alister,Josh Martinez,68,1,0.575
8130,58113,2012-02-01,2012-02-01,12,1800,0.05,150,1710,Anemone Joy,eBay Inc.,Miscellaneous,Business Services,Corpus Christi,78415,Texas,Central,2012-02-03,2,Consulting - Market Research,Consulting,Python,Ethan Bird,Josh Martinez,60,1,0.6
1204,8832,2012-02-02,2012-02-01,39,4875,0.1,125,4387.5,Giulietta Ferguson,Symantec Corporation,Technology,Computer Software: Prepackaged Software,Menlo Park,94025,California,West,2012-02-06,4,Training - SQL,Training,Business Model,Mia Moore,Bob Turner,51,1,0.592
3197,22916,2012-02-02,2012-02-01,18,1980,0.04,110,1900.8,Pete Tran,"Netflix, Inc.",Consumer Services,Consumer Electronics/Video Chains,Baldwin,15234,Pennsylvania,East,2012-02-03,1,Development - Python,Development,Python,Mia Moore,Allen Young,51,1,0.536363636
4567,32513,2012-02-02,2012-02-01,23,3680,0.03,160,3569.6,Andrew Benoit,"Discovery Communications, Inc.",Consumer Services,Television Services,Fort Collins,80525,Colorado,West,2012-02-07,5,Development - Java,Development,Python,Michael Alister,Bob Turner,68,1,0.575
4568,32513,2012-02-02,2012-02-01,40,4800,0.01,120,4752,Andrew Benoit,"Discovery Communications, Inc.",Consumer Services,Television Services,Fountain,80817,Colorado,West,2012-02-07,5,Development - Business Logic,Development,Business Logic,Elizabeth Carter,Bob Turner,52,1,0.566666667
5621,39813,2012-02-02,2012-02-01,48,5280,0.03,110,5121.6,Tonja Murray,Biogen Idec Inc.,Health Care,Biotechnology: Biological Products (No Diagnostic Substances),Lynnwood,98037,Washington,West,2012-02-03,1,Development - Python,Development,Database,Ethan Bird,Bob Turner,60,1,0.454545455
5825,41345,2012-02-02,2012-02-01,36,5040,0.04,140,4838.4,Magdelene Brockman,"Kraft Foods Group, Inc.",Consumer Non-Durables,Packaged Foods,Haltom City,76117,Texas,Central,2012-02-02,0,Development - Database,Development,Scala,Ethan Bird,Josh Martinez,60,1,0.571428571
971,7072,2012-02-04,2012-02-01,29,4640,0.07,160,4315.2,Maureen Weiss,SBA Communications Corporation,Consumer Services,Telecommunications Equipment,Plum,15239,Pennsylvania,East,2012-02-04,0,Development - Java,Development,Big Data,Noah Smith,Allen Young,59,1,0.63125
5669,40100,2012-02-04,2012-02-01,47,5170,0,110,5170,Sandra Prescott,"Citrix Systems, Inc.",Technology,Computer Software: Prepackaged Software,Garfield Heights,44125,Ohio,East,2012-02-08,4,Development - Python,Development,Market Research,Emily Taylor,Allen Young,62,1,0.436363636
2298,16548,2012-02-05,2012-02-01,22,2750,0.06,125,2585,Darren Perrino,Seagate Technology.,Technology,Electronic Components,Arlington,76017,Texas,Central,2012-02-07,2,Training - SQL,Training,Market Research,Isabella Douglas,Josh Martinez,75,1,0.4
2299,16548,2012-02-05,2012-02-01,40,5000,0.04,125,4800,David Hawkins,Western Digital Corporation,Technology,Electronic Components,South Boston,2127,MA,East,2012-02-07,2,Training - Javascript,Training,Development,Mia Moore,Allen Young,51,1,0.592
4796,34083,2012-02-05,2012-02-01,29,4350,0.02,150,4263,Barry Packer,"Mattel, Inc.",Consumer Non-Durables,Recreational Products/Toys,Loveland,80538,Colorado,West,2012-02-05,0,Consulting - Market Research,Consulting,Java,Noah Smith,Bob Turner,59,1,0.606666667
5667,40098,2012-02-05,2012-02-01,46,7360,0,160,7360,Dianna Martinez,Broadcom Corporation,Technology,Semiconductors,Sun City,85351,Arizona,West,2012-02-07,2,Development - Java,Development,SQL,Mia Moore,Bob Turner,51,1,0.68125
5668,40098,2012-02-05,2012-02-01,50,5500,0,110,5500,Dianna Martinez,Broadcom Corporation,Technology,Semiconductors,Sun City,85351,Arizona,West,2012-02-09,4,Development - Python,Development,.Net,Emma Watson,Bob Turner,67,1,0.390909091
7089,50567,2012-02-05,2012-02-01,22,2750,0.1,125,2475,Vivek Brown,"Expeditors International of Washington, Inc.",Transportation,Oil Refining/Marketing,Bethesda,20814,Maryland,East,2012-02-06,1,Training - Development,Training,Javascript,Elizabeth Carter,Allen Young,52,1,0.584
402,2755,2012-02-06,2012-02-01,30,4800,0.03,160,4656,Jane Ordway,Cognizant Technology Solutions Corporation,Technology,EDP Services,Wooster,44691,Ohio,East,2012-02-06,0,Development - Java,Development,SQL,Alexander Edison,Allen Young,70,1,0.5625
403,2755,2012-02-06,2012-02-01,50,5500,0,110,5500,Jane Ordway,Cognizant Technology Solutions Corporation,Technology,EDP Services,Wooster,44691,Ohio,East,2012-02-06,0,Development - Python,Development,SQL,Noah Smith,Allen Young,59,1,0.463636364
2343,16866,2012-02-06,2012-02-01,43,6450,0.06,150,6063,Penelope Pistole,Microsoft Corporation,Technology,Computer Software: Prepackaged Software,Miramar,33023,Florida,South,2012-02-07,1,Consulting - Market Research,Consulting,Business Logic,Sophia Dixon,Frank Mitchell,71,1,0.526666667
3424,24448,2012-02-06,2012-02-01,46,5750,0.05,125,5462.5,Roy Peterman,Broadcom Corporation,Technology,Semiconductors,Gainesville,32601,Florida,South,2012-02-08,2,Training - Javascript,Training,SQL,Mason Gibson,Frank Mitchell,71,1,0.432
8248,58978,2012-02-06,2012-02-01,13,1430,0.09,110,1301.3,Kristina Willman,Check Point Software Technologies Ltd.,Technology,Computer Software: Prepackaged Software,East Lansing,48823,Michigan,Central,2012-02-13,7,Development - Python,Development,Python,Jayden Hamilton,Josh Martinez,71,1,0.354545455
1121,8224,2012-02-07,2012-02-01,41,4920,0.03,120,4772.4,John Dowd,Monster Beverage Corporation,Consumer Non-Durables,Beverages (Production/Distribution),Shaker Heights,44118,Ohio,East,2012-02-09,2,Development - Business Logic,Development,Market Research,Jayden Hamilton,Allen Young,71,1,0.408333333
1613,11683,2012-02-07,2012-02-01,28,4200,0.03,150,4074,Fred Southworth,NXP Semiconductors N.V.,Technology,Semiconductors,East Meadow,11554,New York,East,2012-02-07,0,Consulting - Market Research,Consulting,Business Model,Daniel Tusk,Allen Young,45,1,0.7
3914,27909,2012-02-07,2012-02-01,1,110,0.09,110,100.1,Monica Brumfield,Biogen Idec Inc.,Health Care,Biotechnology: Biological Products (No Diagnostic Substances),Hanover Park,60103,Illinois,Central,2012-02-09,2,Development - Python,Development,.Net,Madison Hill,Josh Martinez,58,1,0.472727273
3915,27909,2012-02-07,2012-02-01,47,6580,0.07,140,6119.4,Monica Brumfield,Biogen Idec Inc.,Health Care,Biotechnology: Biological Products (No Diagnostic Substances),Hanover Park,60103,Illinois,Central,2012-02-10,3,Development - Database,Development,Business Logic,Daniel Tusk,Josh Martinez,45,1,0.678571429
3978,28390,2012-02-07,2012-02-01,44,5500,0.1,125,4950,Chad Jas,"Dollar Tree, Inc.",Consumer Services,Department/Specialty Retail Stores,Reisterstown,21136,Maryland,East,2012-02-09,2,Training - SQL,Training,Python,Noah Smith,Allen Young,59,1,0.528
4800,34117,2012-02-07,2012-02-01,45,7200,0.06,160,6768,Tony Lucas,Celgene Corporation,Health Care,Major Pharmaceuticals,Olympia,98502,Washington,West,2012-02-09,2,Development - Java,Development,Big Data,Mia Moore,Bob Turner,51,1,0.68125
7124,50822,2012-02-07,2012-02-01,6,750,0.1,125,675,Carol Weiss,Comcast Corporation,Consumer Services,Television Services,Pueblo,81001,Colorado,West,2012-02-08,1,Training - Development,Training,Market Research,Ava Wilson,Bob Turner,67,1,0.464
7125,50822,2012-02-07,2012-02-01,37,5550,0.01,150,5494.5,Carol Weiss,Comcast Corporation,Consumer Services,Television Services,Pueblo,81001,Colorado,West,2012-02-08,1,Consulting - Business Model,Consulting,Development,Ava Wilson,Bob Turner,67,1,0.553333333
3224,23140,2012-02-08,2012-02-01,18,2250,0.05,125,2137.5,MaryBeth McCrossin,NXP Semiconductors N.V.,Technology,Semiconductors,Mooresville,28115,North Carolina,South,2012-02-10,2,Training - SQL,Training,Scala,Sophia Dixon,Frank Mitchell,71,1,0.432
3225,23140,2012-02-08,2012-02-01,16,1920,0.02,120,1881.6,MaryBeth McCrossin,NXP Semiconductors N.V.,Technology,Semiconductors,Mooresville,28115,North Carolina,South,2012-02-08,0,Development - Business Logic,Development,Python,Jacob Manziel,Frank Mitchell,57,1,0.525
3805,27109,2012-02-08,2012-02-01,48,7200,0.01,150,7128,Barry Myrick,Monster Beverage Corporation,Consumer Non-Durables,Beverages (Production/Distribution),Tinley Park,60477,Illinois,Central,2012-02-10,2,Consulting - Business Model,Consulting,SQL,Jayden Hamilton,Josh Martinez,71,1,0.526666667
3864,27557,2012-02-08,2012-02-01,18,3600,0.02,200,3528,Robert Drucker,"Automatic Data Processing, Inc.",Technology,EDP Services,Middletown,45042,Ohio,East,2012-02-13,5,Development - Scala,Development,Java,Liam Franklin,Allen Young,52,1,0.74
3953,28198,2012-02-08,2012-02-01,50,7500,0,150,7500,Georgia Flathmann,"Stericycle, Inc.",Basic Industries,Environmental Services,Alexandria,22304,Virginia,South,2012-02-09,1,Consulting - Market Research,Consulting,.Net,Daniel Tusk,Frank Mitchell,45,1,0.7
5305,37763,2012-02-08,2012-02-01,29,4640,0.1,160,4176,Alan Blumstein,"Activision Blizzard, Inc",Technology,Computer Software: Prepackaged Software,Tonawanda,14150,New York,East,2012-02-09,1,Development - Java,Development,PHP,Liam Franklin,Allen Young,52,1,0.675
5306,37763,2012-02-08,2012-02-01,24,3600,0.1,150,3240,Alan Blumstein,"Activision Blizzard, Inc",Technology,Computer Software: Prepackaged Software,Tonawanda,14150,New York,East,2012-02-09,1,Consulting - Market Research,Consulting,Business Logic,Sophia Dixon,Allen Young,71,1,0.526666667
6197,43906,2012-02-08,2012-02-01,50,7500,0.04,150,7200,Valerie Bell,"Citrix Systems, Inc.",Technology,Computer Software: Prepackaged Software,Ormond Beach,32174,Florida,South,2012-02-09,1,Consulting - Business Model,Consulting,Big Data,Emily Taylor,Frank Mitchell,62,1,0.586666667
609,4162,2012-02-09,2012-02-01,2,400,0.1,200,360,Alyssa Sink,Catamaran Corporation,Finance,Specialty Insurers,Longmeadow,1106,MA,East,2012-02-13,4,Development - Big Data,Development,SQL,Mia Moore,Allen Young,51,1,0.745
1559,11239,2012-02-09,2012-02-01,33,4125,0.03,125,4001.25,Jay Carlisle,Express Scripts Holding Company,Health Care,Medical/Nursing Services,Fairborn,45324,Ohio,East,2012-02-11,2,Training - Javascript,Training,Java,Michael Alister,Allen Young,68,1,0.456
4162,29507,2012-02-09,2012-02-01,14,1750,0.04,125,1680,Sally Price,Comcast Corporation,Consumer Services,Television Services,North Royalton,44133,Ohio,East,2012-02-11,2,Training - Javascript,Training,Business Model,Abigail Young,Allen Young,50,1,0.6
4163,29507,2012-02-09,2012-02-01,41,6150,0.05,150,5842.5,Sally Price,Comcast Corporation,Consumer Services,Television Services,North Royalton,44133,Ohio,East,2012-02-14,5,Consulting - Market Research,Consulting,Python,William Bufont,Allen Young,62,1,0.586666667
7164,51111,2012-02-09,2012-02-01,1,150,0.02,150,147,Eric Stewart,Garmin Ltd.,Capital Goods,Industrial Machinery/Components,New Milford,6776,Connecticut,East,2012-02-11,2,Consulting - Market Research,Consulting,Market Research,Emma Watson,Allen Young,67,1,0.553333333
1510,10917,2012-02-10,2012-02-01,14,2100,0.09,150,1911,Alice Page,"Charter Communications, Inc.",Consumer Services,Television Services,Kearns,84118,Utah,West,2012-02-12,2,Consulting - Market Research,Consulting,Tableau,Michael Alister,Bob Turner,68,1,0.546666667
4299,30599,2012-02-10,2012-02-01,23,2530,0.05,110,2403.5,Michael Vittorini,"Verisk Analytics, Inc.",Technology,EDP Services,Rutland,5701,Vermont,East,2012-02-12,2,Development - Python,Development,Javascript,William Bufont,Allen Young,62,1,0.436363636
4690,33414,2012-02-10,2012-02-01,9,1080,0.03,120,1047.6,Phillina Brown,The Priceline Group Inc.,Miscellaneous,Business Services,Winchester,22601,Virginia,South,2012-02-10,0,Development - Business Logic,Development,Business Logic,Jayden Hamilton,Frank Mitchell,71,1,0.408333333
4989,35492,2012-02-10,2012-02-01,36,4500,0.02,125,4410,Janet Daniels,"Discovery Communications, Inc.",Consumer Services,Television Services,Nashua,3060,New Hampshire,East,2012-02-12,2,Training - SQL,Training,Python,Isabella Douglas,Allen Young,75,1,0.4
7116,50784,2012-02-10,2012-02-01,20,3000,0.04,150,2880,Chuck Heidel,KLA-Tencor Corporation,Capital Goods,Electronic Components,Frankfort,46041,Indiana,Central,2012-02-11,1,Consulting - Business Model,Consulting,Strategy,Alexander Edison,Josh Martinez,70,1,0.533333333
1090,8007,2012-02-11,2012-02-01,5,750,0.09,150,682.5,Maya Marie,Symantec Corporation,Technology,Computer Software: Prepackaged Software,Red Wing,55066,Minnesota,Central,2012-02-11,0,Consulting - Market Research,Consulting,Business Model,Alexander Edison,Josh Martinez,70,1,0.533333333
1091,8007,2012-02-11,2012-02-01,35,5250,0.09,150,4777.5,Maya Marie,Symantec Corporation,Technology,Computer Software: Prepackaged Software,Rome,30161,Georgia,South,2012-02-11,0,Consulting - Strategy,Consulting,Business Model,Ava Wilson,Frank Mitchell,67,1,0.553333333
1836,13157,2012-02-11,2012-02-01,2,300,0.07,150,279,Deanra Sachs,"Analog Devices, Inc.",Technology,Semiconductors,Riverside,92503,California,West,2012-02-12,1,Consulting - Market Research,Consulting,Database,Noah Smith,Bob Turner,59,1,0.606666667
2365,17093,2012-02-11,2012-02-01,50,6250,0.1,125,5625,Janet Daniels,"Discovery Communications, Inc.",Consumer Services,Television Services,La Quinta,92253,California,West,2012-02-13,2,Training - Development,Training,Big Data,Madison Hill,Bob Turner,58,1,0.536
2556,18500,2012-02-11,2012-02-01,44,5500,0.08,125,5060,Toby Seio,"Alexion Pharmaceuticals, Inc.",Health Care,Major Pharmaceuticals,Germantown,38138,Tennessee,South,2012-02-12,1,Training - Tableau,Training,Python,Olivia Sullivan,Frank Mitchell,53,1,0.576
2557,18500,2012-02-11,2012-02-01,30,4500,0.02,150,4410,Toby Seio,"Alexion Pharmaceuticals, Inc.",Health Care,Major Pharmaceuticals,Germantown,38138,Tennessee,South,2012-02-12,1,Consulting - Business Model,Consulting,Front End Web,Michael Alister,Frank Mitchell,68,1,0.546666667
2558,18500,2012-02-11,2012-02-01,30,6000,0.01,200,5940,Toby Seio,"Alexion Pharmaceuticals, Inc.",Health Care,Major Pharmaceuticals,Germantown,38138,Tennessee,South,2012-02-13,2,Development - Big Data,Development,Business Model,Olivia Sullivan,Frank Mitchell,53,1,0.735
7670,54981,2012-02-11,2012-02-01,31,4960,0.03,160,4811.2,Bart McMahon,"NetApp, Inc.",Technology,Electronic Components,Randallstown,21133,Maryland,East,2012-02-12,1,Development - Java,Development,Business Model,Mason Gibson,Allen Young,71,1,0.55625
7899,56514,2012-02-11,2012-02-01,3,480,0.02,160,470.4,Shirley Braxton,Liberty Global plc,Consumer Services,Television Services,Rome,13440,New York,East,2012-02-18,7,Development - Java,Development,SQL,William Bufont,Allen Young,62,1,0.6125
7900,56514,2012-02-11,2012-02-01,35,3850,0.02,110,3773,Shirley Braxton,Liberty Global plc,Consumer Services,Television Services,Rome,13440,New York,East,2012-02-18,7,Development - Python,Development,Javascript,Madison Hill,Allen Young,58,1,0.472727273
614,4199,2012-02-12,2012-02-01,43,5375,0.01,125,5321.25,Bruce Schmidt,"Applied Materials, Inc.",Technology,Semiconductors,Orem,84057,Utah,West,2012-02-13,1,Training - SQL,Training,Market Research,Liam Franklin,Bob Turner,52,1,0.584
1468,10593,2012-02-12,2012-02-01,27,4050,0.05,150,3847.5,Sally Herrera,Costco Wholesale Corporation,Consumer Services,Department/Specialty Retail Stores,Mankato,56001,Minnesota,Central,2012-02-13,1,Consulting - Business Model,Consulting,Scala,Michael Alister,Josh Martinez,68,1,0.546666667
1469,10593,2012-02-12,2012-02-01,26,3250,0.05,125,3087.5,Sally Herrera,Costco Wholesale Corporation,Consumer Services,Department/Specialty Retail Stores,Mankato,56001,Minnesota,Central,2012-02-14,2,Training - SQL,Training,SQL,Sophia Dixon,Josh Martinez,71,1,0.432
2000,14272,2012-02-12,2012-02-01,32,5440,0.07,170,5059.2,Vivian Emerson,Fastenal Company,Consumer Services,RETAIL: Building Materials,Olney,20832,Maryland,East,2012-02-14,2,Development - .Net,Development,Java,Liam Franklin,Allen Young,52,1,0.694117647
5447,38661,2012-02-12,2012-02-01,48,5280,0.04,110,5068.8,Duane DeMoss,"Discovery Communications, Inc.",Consumer Services,Television Services,Arvada,80004,Colorado,West,2012-02-13,1,Development - Python,Development,Javascript,Olivia Sullivan,Bob Turner,53,1,0.518181818
5448,38661,2012-02-12,2012-02-01,6,900,0.09,150,819,Duane DeMoss,"Discovery Communications, Inc.",Consumer Services,Television Services,Arvada,80004,Colorado,West,2012-02-15,3,Consulting - Market Research,Consulting,Business Model,William Bufont,Bob Turner,62,1,0.586666667
4657,33184,2012-02-13,2012-02-01,32,5120,0,160,5120,Dennis Chand,"Activision Blizzard, Inc",Technology,Computer Software: Prepackaged Software,Charlotte,28205,North Carolina,South,2012-02-15,2,Development - Java,Development,Business Logic,Alexander Edison,Frank Mitchell,70,1,0.5625
4658,33184,2012-02-13,2012-02-01,1,160,0.09,160,145.6,Dennis Chand,"Activision Blizzard, Inc",Technology,Computer Software: Prepackaged Software,Charlotte,28205,North Carolina,South,2012-02-15,2,Development - Java,Development,Market Research,Emily Taylor,Frank Mitchell,62,1,0.6125
4811,34211,2012-02-13,2012-02-01,15,1800,0.1,120,1620,Alan Daly,Avago Technologies Limited,Technology,Semiconductors,Rosenberg,77471,Texas,Central,2012-02-16,3,Development - Business Logic,Development,Business Logic,Jayden Hamilton,Josh Martinez,71,1,0.408333333
5738,40772,2012-02-13,2012-02-01,15,2100,0,140,2100,Pauline MacIntyre,Monster Beverage Corporation,Consumer Non-Durables,Beverages (Production/Distribution),Warner Robins,31088,Georgia,South,2012-02-14,1,Development - Database,Development,Market Research,William Bufont,Frank Mitchell,62,1,0.557142857
175,1154,2012-02-14,2012-02-01,44,5500,0.04,125,5280,Sylvia Gastineau,"Stericycle, Inc.",Basic Industries,Environmental Services,Mount Prospect,60056,Illinois,Central,2012-02-16,2,Training - Tableau,Training,Business Model,Jacob Manziel,Josh Martinez,57,1,0.544
176,1154,2012-02-14,2012-02-01,11,1375,0.25,125,1031.25,Sylvia Gastineau,"Stericycle, Inc.",Basic Industries,Environmental Services,Mount Prospect,60056,Illinois,Central,2012-02-16,2,Training - Javascript,Training,Business Logic,Elizabeth Carter,Josh Martinez,52,1,0.584
177,1154,2012-02-14,2012-02-01,23,4600,0.02,200,4508,Thea Hughes,Vodafone Group Plc,Public Utilities,Telecommunications Equipment,Derry,3038,New Hampshire,East,2012-02-16,2,Development - Scala,Development,Tableau,Ethan Bird,Allen Young,60,1,0.7
178,1154,2012-02-14,2012-02-01,7,1190,0.01,170,1178.1,Thea Hughes,Vodafone Group Plc,Public Utilities,Telecommunications Equipment,Stamford,6903,Connecticut,East,2012-02-15,1,Development - .Net,Development,Javascript,Emma Watson,Allen Young,67,1,0.605882353
227,1537,2012-02-14,2012-02-01,5,800,0.07,160,744,Grant Harrigan,Viacom Inc.,Consumer Services,Television Services,Hampton,3842,New Hampshire,East,2012-02-14,0,Development - Java,Development,Python,Daniel Tusk,Allen Young,45,1,0.71875
6097,43203,2012-02-14,2012-02-01,32,3520,0.02,110,3449.6,Susan Harms,SanDisk Corporation,Technology,Electronic Components,Melrose Park,60160,Illinois,Central,2012-02-16,2,Development - Python,Development,Development,Jayden Hamilton,Josh Martinez,71,1,0.354545455
7555,54053,2012-02-14,2012-02-01,18,2700,0.06,150,2538,Alex Thompson,Check Point Software Technologies Ltd.,Technology,Computer Software: Prepackaged Software,Bangor,4401,Maine,East,2012-02-15,1,Consulting - Market Research,Consulting,Business Logic,Noah Smith,Allen Young,59,1,0.606666667
7556,54053,2012-02-14,2012-02-01,34,5100,0.03,150,4947,Alex Thompson,Check Point Software Technologies Ltd.,Technology,Computer Software: Prepackaged Software,Perth Amboy,8861,New Jersey,East,2012-02-15,1,Consulting - Market Research,Consulting,Business Model,Daniel Tusk,Allen Young,45,1,0.7
4152,29473,2012-02-15,2012-02-01,40,5000,0,125,5000,Katrina Radford,"Analog Devices, Inc.",Technology,Semiconductors,Orange,7050,New Jersey,East,2012-02-16,1,Training - Javascript,Training,.Net,Michael Alister,Allen Young,68,1,0.456
4153,29473,2012-02-15,2012-02-01,31,4650,0.05,150,4417.5,Katrina Radford,"Analog Devices, Inc.",Technology,Semiconductors,Westbrook,4092,Maine,East,2012-02-17,2,Consulting - Market Research,Consulting,PHP,Michael Alister,Allen Young,68,1,0.546666667
4538,32292,2012-02-15,2012-02-01,49,7350,0.04,150,7056,Ben Lock,The Priceline Group Inc.,Miscellaneous,Business Services,Laconia,3246,New Hampshire,East,2012-02-22,7,Consulting - Market Research,Consulting,Market Research,Olivia Sullivan,Allen Young,53,1,0.646666667
4539,32292,2012-02-15,2012-02-01,1,120,0.07,120,111.6,Ben Lock,The Priceline Group Inc.,Miscellaneous,Business Services,Tiverton,2878,Rhode Island,East,2012-02-17,2,Development - Business Logic,Development,Development,Mia Moore,Allen Young,51,1,0.575
5357,38052,2012-02-15,2012-02-01,13,1950,0.03,150,1891.5,Erin Henry,"Intuitive Surgical, Inc.",Health Care,Industrial Specialties,Fort Worth,76106,Texas,Central,2012-02-15,0,Consulting - Business Model,Consulting,Scala,Sophia Dixon,Josh Martinez,71,1,0.526666667
7601,54371,2012-02-15,2012-02-01,28,3920,0,140,3920,Toby Payne,Altera Corporation,Technology,Semiconductors,Sunrise,33322,Florida,South,2012-02-15,0,Development - Database,Development,Strategy,Liam Franklin,Frank Mitchell,52,1,0.628571429
7602,54371,2012-02-15,2012-02-01,7,1120,0.05,160,1064,Toby Payne,Altera Corporation,Technology,Semiconductors,Tallahassee,32303,Florida,South,2012-02-17,2,Development - Java,Development,Big Data,Elizabeth Carter,Frank Mitchell,52,1,0.675
1992,14212,2012-02-16,2012-02-01,4,500,0,125,500,Cyma Huthwaite,"Paychex, Inc.",Consumer Services,Diversified Commercial Services,Vancouver,98661,Washington,West,2012-02-17,1,Training - SQL,Training,Business Model,Ethan Bird,Bob Turner,60,1,0.52
1993,14212,2012-02-16,2012-02-01,8,1600,0.02,200,1568,Cyma Huthwaite,"Paychex, Inc.",Consumer Services,Diversified Commercial Services,Walla Walla,99362,Washington,West,2012-02-18,2,Development - Scala,Development,Strategy,Emma Watson,Bob Turner,67,1,0.665
4364,31106,2012-02-16,2012-02-01,37,7400,0,200,7400,Nick Spruell,DIRECTV,Consumer Services,Telecommunications Equipment,Houma,70364,Louisiana,South,2012-02-16,0,Development - Scala,Development,Database,Olivia Sullivan,Frank Mitchell,53,1,0.735
4365,31106,2012-02-16,2012-02-01,7,875,0.03,125,848.75,Nick Spruell,DIRECTV,Consumer Services,Telecommunications Equipment,Houma,70364,Louisiana,South,2012-02-21,5,Training - SQL,Training,Javascript,Alexander Edison,Frank Mitchell,70,1,0.44
4366,31106,2012-02-16,2012-02-01,45,6300,0.01,140,6237,Nick Spruell,DIRECTV,Consumer Services,Telecommunications Equipment,Houma,70364,Louisiana,South,2012-02-18,2,Development - Front End Web,Development,Business Model,Jacob Manziel,Frank Mitchell,57,1,0.592857143
4367,31106,2012-02-16,2012-02-01,43,6450,0,150,6450,Nick Spruell,DIRECTV,Consumer Services,Telecommunications Equipment,Kenner,70065,Louisiana,South,2012-02-23,7,Consulting - Market Research,Consulting,Python,Michael Alister,Frank Mitchell,68,1,0.546666667
123,801,2012-02-17,2012-02-01,20,2400,0.03,120,2328,Thais Roper,VimpelCom Ltd.,Public Utilities,Telecommunications Equipment,Poinciana,34759,Florida,South,2012-02-20,3,Development - Business Logic,Development,Java,Isabella Douglas,Frank Mitchell,75,1,0.375
631,4391,2012-02-17,2012-02-01,20,3000,0.06,150,2820,Eugene Liston,Liberty Media Corporation,Consumer Services,Broadcasting,Aurora,80013,Colorado,West,2012-02-19,2,Consulting - Market Research,Consulting,.Net,Elizabeth Carter,Bob Turner,52,1,0.653333333
1995,14240,2012-02-17,2012-02-01,24,3840,0,160,3840,Ralph Eplett,Sigma-Aldrich Corporation,Consumer Durables,Specialty Chemicals,Kalamazoo,49001,Michigan,Central,2012-02-18,1,Development - Java,Development,SQL,Daniel Tusk,Josh Martinez,45,1,0.71875
3480,24775,2012-02-17,2012-02-01,15,1875,0,125,1875,Tracy Hoffman,Cerner Corporation,Technology,EDP Services,Columbia,29203,South Carolina,South,2012-02-19,2,Training - Tableau,Training,Python,Jayden Hamilton,Frank Mitchell,71,1,0.432
3481,24775,2012-02-17,2012-02-01,6,750,0.06,125,705,Tracy Hoffman,Cerner Corporation,Technology,EDP Services,Columbia,29203,South Carolina,South,2012-02-18,1,Training - SQL,Training,Java,Daniel Tusk,Frank Mitchell,45,1,0.64
5660,40065,2012-02-17,2012-02-01,49,7350,0.06,150,6909,Craig Blumstein,"NetApp, Inc.",Technology,Electronic Components,Salt Lake City,84106,Utah,West,2012-02-18,1,Consulting - Compensation,Consulting,Javascript,Elizabeth Carter,Bob Turner,52,1,0.653333333
5661,40065,2012-02-17,2012-02-01,4,600,0.04,150,576,Craig Blumstein,"NetApp, Inc.",Technology,Electronic Components,Salt Lake City,84106,Utah,West,2012-02-18,1,Consulting - Market Research,Consulting,Java,Daniel Tusk,Bob Turner,45,1,0.7
5662,40067,2012-02-17,2012-02-01,38,5700,0,150,5700,Alan Reichenbach,Amgen Inc.,Health Care,Biotechnology: Biological Products (No Diagnostic Substances),Streamwood,60107,Illinois,Central,2012-02-19,2,Consulting - Market Research,Consulting,.Net,Michael Alister,Josh Martinez,68,1,0.546666667
5731,40673,2012-02-17,2012-02-01,14,1540,0.02,110,1509.2,Art Coram,Liberty Global plc,Consumer Services,Television Services,Lakewood,80232,Colorado,West,2012-02-22,5,Development - PHP,Development,Java,Abigail Young,Bob Turner,50,1,0.545454545
5901,41830,2012-02-17,2012-02-01,42,6300,0,150,6300,Deirdre Chong,"Akamai Technologies, Inc.",Miscellaneous,Business Services,Centereach,11720,New York,East,2012-02-24,7,Consulting - Strategy,Consulting,Business Model,Ava Wilson,Allen Young,67,1,0.553333333
1726,12418,2012-02-18,2012-02-01,38,7600,0.09,200,6916,Ed Yedwab,DISH Network Corporation,Consumer Services,Television Services,Tempe,85281,Arizona,West,2012-02-20,2,Development - Big Data,Development,Java,Jacob Manziel,Bob Turner,57,1,0.715
4523,32192,2012-02-18,2012-02-01,4,600,0.03,150,582,Brooke Abelman,"Akamai Technologies, Inc.",Miscellaneous,Business Services,Redmond,97756,Oregon,West,2012-02-18,0,Consulting - Market Research,Consulting,Business Logic,Michael Alister,Bob Turner,68,1,0.546666667
5215,37123,2012-02-18,2012-02-01,50,6250,0.05,125,5937.5,Lena McGuire,"Dollar Tree, Inc.",Consumer Services,Department/Specialty Retail Stores,Berea,44017,Ohio,East,2012-02-19,1,Training - Javascript,Training,PHP,Jacob Manziel,Allen Young,57,1,0.544
5264,37445,2012-02-18,2012-02-01,37,6290,0.05,170,5975.5,Anthony Hudgings,Intel Corporation,Technology,Semiconductors,Louisville,80027,Colorado,West,2012-02-19,1,Development - .Net,Development,Java,Noah Smith,Bob Turner,59,1,0.652941176
5937,42115,2012-02-18,2012-02-01,21,3150,0.01,150,3118.5,Ed Yedwab,DISH Network Corporation,Consumer Services,Television Services,Yuma,85364,Arizona,West,2012-02-18,0,Consulting - Business Model,Consulting,Python,Olivia Sullivan,Bob Turner,53,1,0.646666667
5938,42115,2012-02-18,2012-02-01,19,3800,0.02,200,3724,Ed Yedwab,DISH Network Corporation,Consumer Services,Television Services,Yuma,85364,Arizona,West,2012-02-19,1,Development - Big Data,Development,Business Model,Sophia Dixon,Bob Turner,71,1,0.645
7292,52003,2012-02-18,2012-02-01,11,1375,0.04,125,1320,Charles Sunley,Electronic Arts Inc.,Technology,Computer Software: Prepackaged Software,Santa Maria,93454,California,West,2012-02-25,7,Training - Javascript,Training,Business Logic,Michael Alister,Bob Turner,68,1,0.456
7293,52003,2012-02-18,2012-02-01,2,300,0.1,150,270,Charles Sunley,Electronic Arts Inc.,Technology,Computer Software: Prepackaged Software,Santa Maria,93454,California,West,2012-02-18,0,Consulting - Market Research,Consulting,Business Model,Daniel Tusk,Bob Turner,45,1,0.7
167,1057,2012-02-19,2012-02-01,41,6150,0.09,150,5596.5,Anthony Patel,"Intuitive Surgical, Inc.",Health Care,Industrial Specialties,Deer Park,77536,Texas,Central,2012-02-21,2,Consulting - Business Model,Consulting,Business Model,Liam Franklin,Josh Martinez,52,1,0.653333333
813,5860,2012-02-19,2012-02-01,12,1440,0.09,120,1310.4,Annie Martin,Google Inc.,Technology,"Computer Software: Programming, Data Processing",Logan,84321,Utah,West,2012-02-21,2,Development - Business Logic,Development,.Net,Michael Alister,Bob Turner,68,1,0.433333333
1776,12711,2012-02-19,2012-02-01,32,3840,0,120,3840,Sung Fjeld,SBA Communications Corporation,Consumer Services,Telecommunications Equipment,Monroe,71203,Louisiana,South,2012-02-20,1,Development - Business Logic,Development,Scala,Isabella Douglas,Frank Mitchell,75,1,0.375
1777,12711,2012-02-19,2012-02-01,45,6300,0.05,140,5985,Sung Fjeld,SBA Communications Corporation,Consumer Services,Telecommunications Equipment,New Iberia,70560,Louisiana,South,2012-02-20,1,Development - Front End Web,Development,Business Model,Ethan Bird,Frank Mitchell,60,1,0.571428571
3677,26309,2012-02-19,2012-02-01,42,8400,0.09,200,7644,Alan Carroll,"Amazon.com, Inc.",Consumer Services,Catalog/Specialty Distribution,Redmond,98052,Washington,West,2012-02-21,2,Development - Scala,Development,Java,Abigail Young,Bob Turner,50,1,0.75
5036,35905,2012-02-19,2012-02-01,20,2400,0.09,120,2184,Deanra Sachs,"Analog Devices, Inc.",Technology,Semiconductors,South Orange,7079,New Jersey,East,2012-02-24,5,Development - Business Logic,Development,Big Data,Emma Watson,Allen Young,67,1,0.441666667
5510,39075,2012-02-19,2012-02-01,50,10000,0.01,200,9900,Quincy Patterson,"Ross Stores, Inc.",Consumer Services,Clothing/Shoe/Accessory Stores,Roswell,88201,New Mexico,West,2012-02-20,1,Development - Scala,Development,Tableau,Ethan Bird,Bob Turner,60,1,0.7
2,6,2012-02-20,2012-02-01,2,280,0.01,140,277.2,Ruben Staebel,Celgene Corporation,Health Care,Major Pharmaceuticals,Edmonds,98026,Washington,West,2012-02-21,1,Development - Front End Web,Development,Front End Web,Isabella Douglas,Bob Turner,75,1,0.464285714
6527,46466,2012-02-21,2012-02-01,7,875,0.05,125,831.25,Matt Kastensmidt,Liberty Interactive Corporation,Consumer Services,Catalog/Specialty Distribution,Harker Heights,76543,Texas,Central,2012-02-22,1,Training - SQL,Training,Javascript,Ethan Bird,Josh Martinez,60,1,0.52
1150,8388,2012-02-23,2012-02-01,39,4875,0.07,125,4533.75,Olvera Holt,Google Inc.,Technology,"Computer Software: Programming, Data Processing",Kenosha,53142,Wisconsin,Central,2012-02-25,2,Training - SQL,Training,.Net,Emma Watson,Josh Martinez,67,1,0.464
1151,8388,2012-02-23,2012-02-01,37,5920,0.02,160,5801.6,Olvera Holt,Google Inc.,Technology,"Computer Software: Programming, Data Processing",La Crosse,54601,Wisconsin,Central,2012-02-25,2,Development - Java,Development,Business Model,Abigail Young,Josh Martinez,50,1,0.6875
1152,8388,2012-02-23,2012-02-01,42,4620,0.02,110,4527.6,Olvera Holt,Google Inc.,Technology,"Computer Software: Programming, Data Processing",La Crosse,54601,Wisconsin,Central,2012-02-25,2,Development - Python,Development,Java,Madison Hill,Josh Martinez,58,1,0.472727273
1277,9281,2012-02-23,2012-02-01,31,3410,0.08,110,3137.2,Alan Daly,Avago Technologies Limited,Technology,Semiconductors,Port Arthur,77642,Texas,Central,2012-02-25,2,Development - Python,Development,Java,Sophia Dixon,Josh Martinez,71,1,0.354545455
1278,9281,2012-02-23,2012-02-01,24,2880,0.02,120,2822.4,Alan Daly,Avago Technologies Limited,Technology,Semiconductors,Port Arthur,77642,Texas,Central,2012-02-25,2,Development - Business Logic,Development,SQL,Sophia Dixon,Josh Martinez,71,1,0.408333333
4975,35392,2012-02-23,2012-02-01,9,990,0.01,110,980.1,Erin Eichhorn,"Kraft Foods Group, Inc.",Consumer Non-Durables,Packaged Foods,Bessemer,35020,Alabama,South,2012-02-23,0,Development - Python,Development,Business Model,Isabella Douglas,Frank Mitchell,75,1,0.318181818
5675,40132,2012-02-23,2012-02-01,26,3250,0.04,125,3120,Hunter Chen,Biogen Idec Inc.,Health Care,Biotechnology: Biological Products (No Diagnostic Substances),Downers Grove,60516,Illinois,Central,2012-02-29,6,Training - Development,Training,Development,Elizabeth Carter,Josh Martinez,52,1,0.584
5676,40132,2012-02-23,2012-02-01,36,4500,0.04,125,4320,Hunter Chen,Biogen Idec Inc.,Health Care,Biotechnology: Biological Products (No Diagnostic Substances),Downers Grove,60516,Illinois,Central,2012-02-29,6,Training - Javascript,Training,Development,Mason Gibson,Josh Martinez,71,1,0.432
5677,40132,2012-02-23,2012-02-01,16,2560,0.09,160,2329.6,Hunter Chen,Biogen Idec Inc.,Health Care,Biotechnology: Biological Products (No Diagnostic Substances),East Saint Louis,62205,Illinois,Central,2012-03-02,8,Development - Java,Development,.Net,Elizabeth Carter,Josh Martinez,52,1,0.675
5911,41921,2012-02-23,2012-02-01,32,4000,0.04,125,3840,Katharine Allen,"Whole Foods Market, Inc.",Consumer Services,Food Chains,Alamogordo,88310,New Mexico,West,2012-02-26,3,Training - Development,Training,Java,Michael Alister,Bob Turner,68,1,0.456
5912,41921,2012-02-23,2012-02-01,29,3190,0.04,110,3062.4,Katharine Allen,"Whole Foods Market, Inc.",Consumer Services,Food Chains,Alamogordo,88310,New Mexico,West,2012-02-24,1,Development - PHP,Development,Java,Michael Alister,Bob Turner,68,1,0.381818182
7181,51239,2012-02-23,2012-02-01,48,6000,0.09,125,5460,Katharine Allen,"Whole Foods Market, Inc.",Consumer Services,Food Chains,Albuquerque,87105,New Mexico,West,2012-02-25,2,Training - Javascript,Training,Scala,Sophia Dixon,Bob Turner,71,1,0.432
1626,11776,2012-02-24,2012-02-01,40,5600,0.04,140,5376,Christina Yedwab,"Gilead Sciences, Inc.",Health Care,Biotechnology: Biological Products (No Diagnostic Substances),Newton,50208,Iowa,Central,2012-02-24,0,Development - Database,Development,Business Model,Mason Gibson,Josh Martinez,71,1,0.492857143
1911,13668,2012-02-24,2012-02-01,42,5250,0.02,125,5145,Jill Hernandez,"Illumina, Inc.",Capital Goods,Biotechnology: Laboratory Analytical Instruments,Palm Springs,92262,California,West,2012-02-26,2,Training - SQL,Training,Javascript,Emma Watson,Bob Turner,67,1,0.464
3548,25314,2012-02-24,2012-02-01,43,6450,0,150,6450,Nick Spruell,DIRECTV,Consumer Services,Telecommunications Equipment,Houma,70364,Louisiana,South,2012-02-26,2,Consulting - Market Research,Consulting,Python,Alexander Edison,Frank Mitchell,70,1,0.533333333
3595,25637,2012-02-25,2012-02-01,12,1500,0.1,125,1350,Erin Eichhorn,"Kraft Foods Group, Inc.",Consumer Non-Durables,Packaged Foods,Bessemer,35020,Alabama,South,2012-02-27,2,Training - Javascript,Training,Javascript,Abigail Young,Frank Mitchell,50,1,0.6
7438,53026,2012-02-26,2012-02-01,35,4900,0.05,140,4655,Adrian Reed,"Alexion Pharmaceuticals, Inc.",Health Care,Major Pharmaceuticals,Redmond,98052,Washington,West,2012-03-03,6,Development - Front End Web,Development,Big Data,Mason Gibson,Bob Turner,71,1,0.492857143
7459,53221,2012-02-26,2012-02-01,29,3625,0.1,125,3262.5,Art Lichtenstein,"Kraft Foods Group, Inc.",Consumer Non-Durables,Packaged Foods,Rochester,55901,Minnesota,Central,2012-02-27,1,Training - SQL,Training,SQL,Jayden Hamilton,Josh Martinez,71,1,0.432
8000,57157,2012-02-26,2012-02-01,18,3060,0.01,170,3029.4,Maya Marie,Symantec Corporation,Technology,Computer Software: Prepackaged Software,Roswell,30076,Georgia,South,2012-02-29,3,Development - .Net,Development,Python,Ava Wilson,Frank Mitchell,67,1,0.605882353
8264,59075,2012-02-26,2012-02-01,38,4180,0.02,110,4096.4,David Knight,"Xilinx, Inc.",Technology,Semiconductors,Highland Village,75067,Texas,Central,2012-02-29,3,Development - Python,Development,.Net,Isabella Douglas,Josh Martinez,75,1,0.318181818
8265,59075,2012-02-26,2012-02-01,4,600,0.02,150,588,David Knight,"Xilinx, Inc.",Technology,Semiconductors,West Scarborough,4070,Maine,East,2012-03-05,8,Consulting - Business Model,Consulting,Business Logic,Michael Alister,Allen Young,68,1,0.546666667
191,1282,2012-02-27,2012-02-01,26,3900,0,150,3900,Emily Kriz,"Gilead Sciences, Inc.",Health Care,Biotechnology: Biological Products (No Diagnostic Substances),Prairie Village,66202,Kansas,Central,2012-02-29,2,Consulting - Business Model,Consulting,Market Research,Sophia Dixon,Josh Martinez,71,1,0.526666667
192,1282,2012-02-27,2012-02-01,10,1200,0.01,120,1188,Emily Kriz,"Gilead Sciences, Inc.",Health Care,Biotechnology: Biological Products (No Diagnostic Substances),Prairie Village,66202,Kansas,Central,2012-02-29,2,Development - Business Logic,Development,Java,William Bufont,Josh Martinez,62,1,0.483333333
1044,7653,2012-02-27,2012-02-01,32,3520,0.1,110,3168,Jill Caudle,Intuit Inc.,Technology,Computer Software: Prepackaged Software,Deland,32720,Florida,South,2012-03-01,3,Development - Python,Development,SQL,Liam Franklin,Frank Mitchell,52,1,0.527272727
2621,18950,2012-02-27,2012-02-01,33,4950,0.05,150,4702.5,Barry Williamson,Microsoft Corporation,Technology,Computer Software: Prepackaged Software,Parkville,21234,Maryland,East,2012-03-04,6,Consulting - Strategy,Consulting,.Net,Sophia Dixon,Allen Young,71,1,0.526666667
2672,19332,2012-02-27,2012-02-01,46,5750,0.06,125,5405,Barry Williamson,Microsoft Corporation,Technology,Computer Software: Prepackaged Software,Parkville,21234,Maryland,East,2012-02-29,2,Training - Javascript,Training,Scala,Emily Taylor,Allen Young,62,1,0.504
5085,36257,2012-02-27,2012-02-01,43,6450,0.08,150,5934,Phillina Brown,The Priceline Group Inc.,Miscellaneous,Business Services,Auburn,98002,Washington,West,2012-02-29,2,Consulting - Business Model,Consulting,Development,Michael Alister,Bob Turner,68,1,0.546666667
6994,49954,2012-02-27,2012-02-01,36,5400,0.08,150,4968,Claire Armstrong,Liberty Media Corporation,Consumer Services,Broadcasting,Tigard,97224,Oregon,West,2012-02-29,2,Consulting - Market Research,Consulting,Front End Web,Elizabeth Carter,Bob Turner,52,1,0.653333333
7106,50721,2012-02-27,2012-02-01,33,5280,0.04,160,5068.8,Jennifer Grady,"Fiserv, Inc.",Technology,EDP Services,Broken Arrow,74012,Oklahoma,Central,2012-02-29,2,Development - Java,Development,Business Model,Noah Smith,Josh Martinez,59,1,0.63125
7867,56261,2012-02-27,2012-02-01,43,5375,0.02,125,5267.5,Paul Hooks,Marriott International,Consumer Services,Hotels/Resorts,Menlo Park,94025,California,West,2012-02-29,2,Training - Javascript,Training,Javascript,Emma Watson,Bob Turner,67,1,0.464
8284,59204,2012-02-29,2012-02-01,8,1280,0.1,160,1152,Corey Patt,"Mondelez International, Inc.",Consumer Non-Durables,Packaged Foods,Oceanside,92054,California,West,2012-03-01,1,Development - Java,Development,Business Model,Jacob Manziel,Bob Turner,57,1,0.64375
8285,59204,2012-02-29,2012-02-01,7,770,0.09,110,700.7,Corey Patt,"Mondelez International, Inc.",Consumer Non-Durables,Packaged Foods,Oceanside,92054,California,West,2012-03-01,1,Development - Python,Development,.Net,Elizabeth Carter,Bob Turner,52,1,0.527272727
8286,59204,2012-02-29,2012-02-01,25,4000,0.04,160,3840,Corey Patt,"Mondelez International, Inc.",Consumer Non-Durables,Packaged Foods,Searcy,72143,Arkansas,South,2012-03-01,1,Development - Java,Development,Python,Daniel Tusk,Frank Mitchell,45,1,0.71875
1096,8035,2012-03-01,2012-03-01,7,1190,0.07,170,1106.7,Don Shami,"C.H. Robinson Worldwide, Inc.",Transportation,Oil Refining/Marketing,Bethel Park,15102,Pennsylvania,East,2012-03-03,2,Development - .Net,Development,Business Model,Ava Wilson,Allen Young,67,1,0.605882353
4721,33606,2012-03-01,2012-03-01,46,5750,0.05,125,5462.5,Theresa Dickinson,"Whole Foods Market, Inc.",Consumer Services,Food Chains,Port Chester,10573,New York,East,2012-03-03,2,Training - SQL,Training,Scala,Daniel Tusk,Allen Young,45,1,0.64
6380,45317,2012-03-01,2012-03-01,36,5400,0.05,150,5130,Trudy Kennedy,Cognizant Technology Solutions Corporation,Technology,EDP Services,Redford,48239,Michigan,Central,2012-03-08,7,Consulting - Business Model,Consulting,Big Data,Noah Smith,Josh Martinez,59,1,0.606666667
6381,45317,2012-03-01,2012-03-01,28,3500,0.05,125,3325,Trudy Kennedy,Cognizant Technology Solutions Corporation,Technology,EDP Services,Redford,48239,Michigan,Central,2012-03-08,7,Training - SQL,Training,Market Research,Jayden Hamilton,Josh Martinez,71,1,0.432
7881,56358,2012-03-01,2012-03-01,1,125,0,125,125,Anne Currie,"Gilead Sciences, Inc.",Health Care,Biotechnology: Biological Products (No Diagnostic Substances),Pico Rivera,90660,California,West,2012-03-03,2,Training - SQL,Training,Business Model,Alexander Edison,Bob Turner,70,1,0.44
65,384,2012-03-02,2012-03-01,50,6250,0.02,125,6125,Sonia Workman,Liberty Interactive Corporation,Consumer Services,Catalog/Specialty Distribution,Bend,97701,Oregon,West,2012-03-09,7,Training - Javascript,Training,Big Data,Elizabeth Carter,Bob Turner,52,1,0.584
2974,21478,2012-03-02,2012-03-01,16,2000,0.01,125,1980,Keith Beeghly,Altera Corporation,Technology,Semiconductors,North Little Rock,72113,Arkansas,South,2012-03-04,2,Training - SQL,Training,Business Model,Emma Watson,Frank Mitchell,67,1,0.464
2975,21478,2012-03-02,2012-03-01,33,3630,0.05,110,3448.5,Keith Beeghly,Altera Corporation,Technology,Semiconductors,North Little Rock,72113,Arkansas,South,2012-03-06,4,Development - Python,Development,Python,Emma Watson,Frank Mitchell,67,1,0.390909091
3841,27392,2012-03-02,2012-03-01,37,5550,0,150,5550,Frank Stugart,NVIDIA Corporation,Technology,Semiconductors,Chicago,60623,Illinois,Central,2012-03-11,9,Consulting - Strategy,Consulting,Business Logic,Jayden Hamilton,Josh Martinez,71,1,0.526666667
6613,47042,2012-03-02,2012-03-01,45,6750,0.03,150,6547.5,Maria Wilson,Linear Technology Corporation,Technology,Semiconductors,Independence,64055,MO,Central,2012-03-03,1,Consulting - Market Research,Consulting,Python,Sophia Dixon,Josh Martinez,71,1,0.526666667
7086,50564,2012-03-02,2012-03-01,30,4800,0.07,160,4464,Julie Murray,"Stericycle, Inc.",Basic Industries,Environmental Services,Webster Groves,63119,MO,Central,2012-03-04,2,Development - Java,Development,.Net,Liam Franklin,Josh Martinez,52,1,0.675
7968,56967,2012-03-02,2012-03-01,17,2550,0.05,150,2422.5,Ken Budd,Bed Bath & Beyond Inc.,Consumer Services,Home Furnishings,Mount Lebanon,15228,Pennsylvania,East,2012-03-09,7,Consulting - Business Model,Consulting,Database,Sophia Dixon,Allen Young,71,1,0.526666667
8243,58917,2012-03-02,2012-03-01,27,4050,0.01,150,4009.5,John Selesnick,"NetApp, Inc.",Technology,Electronic Components,Hempstead,11550,New York,East,2012-03-03,1,Consulting - Compensation,Consulting,Java,Liam Franklin,Allen Young,52,1,0.653333333
8244,58917,2012-03-02,2012-03-01,3,360,0.09,120,327.6,John Selesnick,"NetApp, Inc.",Technology,Electronic Components,Hempstead,11550,New York,East,2012-03-02,0,Development - Business Logic,Development,Python,William Bufont,Allen Young,62,1,0.483333333
615,4230,2012-03-03,2012-03-01,18,2250,0.05,125,2137.5,Tamara Gordon,Tractor Supply Company,Consumer Services,RETAIL: Building Materials,Twentynine Palms,92277,California,West,2012-03-04,1,Training - SQL,Training,Market Research,Emily Taylor,Bob Turner,62,1,0.504
616,4230,2012-03-03,2012-03-01,46,6900,0.07,150,6417,Tamara Gordon,Tractor Supply Company,Consumer Services,RETAIL: Building Materials,Twentynine Palms,92277,California,West,2012-03-05,2,Consulting - Market Research,Consulting,Java,Elizabeth Carter,Bob Turner,52,1,0.653333333
3604,25767,2012-03-03,2012-03-01,7,1050,0.08,150,966,Ann Hagelstein,"Expeditors International of Washington, Inc.",Transportation,Oil Refining/Marketing,Aurora,60505,Illinois,Central,2012-03-03,0,Consulting - Business Model,Consulting,Market Research,Sophia Dixon,Josh Martinez,71,1,0.526666667
3605,25767,2012-03-03,2012-03-01,15,1650,0.04,110,1584,Ann Hagelstein,"Expeditors International of Washington, Inc.",Transportation,Oil Refining/Marketing,Aurora,60505,Illinois,Central,2012-03-04,1,Development - Python,Development,PHP,Olivia Sullivan,Josh Martinez,53,1,0.518181818
4621,32902,2012-03-03,2012-03-01,34,4080,0.03,120,3957.6,Corey Cheatham,Monster Beverage Corporation,Consumer Non-Durables,Beverages (Production/Distribution),Cliffside Park,7010,New Jersey,East,2012-03-04,1,Development - Business Logic,Development,Tableau,Ethan Bird,Allen Young,60,1,0.5
4622,32902,2012-03-03,2012-03-01,23,3910,0.05,170,3714.5,Corey Cheatham,Monster Beverage Corporation,Consumer Non-Durables,Beverages (Production/Distribution),Mission Viejo,92691,California,West,2012-03-05,2,Development - .Net,Development,Tableau,Alexander Edison,Bob Turner,70,1,0.588235294
4623,32902,2012-03-03,2012-03-01,8,1120,0.03,140,1086.4,Corey Cheatham,Monster Beverage Corporation,Consumer Non-Durables,Beverages (Production/Distribution),Mission Viejo,92691,California,West,2012-03-05,2,Development - Front End Web,Development,.Net,Noah Smith,Bob Turner,59,1,0.578571429
5047,35968,2012-03-03,2012-03-01,21,3360,0.05,160,3192,Barry Duston,Mylan Inc.,Health Care,Major Pharmaceuticals,Foster City,94404,California,West,2012-03-05,2,Development - Java,Development,Big Data,Madison Hill,Bob Turner,58,1,0.6375
5874,41666,2012-03-03,2012-03-01,26,3900,0.1,150,3510,Corey Martin,Microsoft Corporation,Technology,Computer Software: Prepackaged Software,Guilford,6437,Connecticut,East,2012-03-04,1,Consulting - Market Research,Consulting,SQL,William Bufont,Allen Young,62,1,0.586666667
6110,43296,2012-03-03,2012-03-01,41,6560,0.06,160,6166.4,Larry Elliston,Comcast Corporation,Consumer Services,Television Services,Kaysville,84037,Utah,West,2012-03-04,1,Development - Java,Development,Python,Abigail Young,Bob Turner,50,1,0.6875
7214,51489,2012-03-03,2012-03-01,42,5250,0.04,125,5040,Berenike Smith,SBA Communications Corporation,Consumer Services,Telecommunications Equipment,Oakland,94601,California,West,2012-03-05,2,Training - SQL,Training,Python,Ethan Bird,Bob Turner,60,1,0.52
7215,51489,2012-03-03,2012-03-01,5,550,0,110,550,Berenike Smith,SBA Communications Corporation,Consumer Services,Telecommunications Equipment,Oakland,94601,California,West,2012-03-05,2,Development - Python,Development,Business Logic,Isabella Douglas,Bob Turner,75,1,0.318181818
7216,51489,2012-03-03,2012-03-01,22,3080,0.09,140,2802.8,Berenike Smith,SBA Communications Corporation,Consumer Services,Telecommunications Equipment,Oakland,94601,California,West,2012-03-03,0,Development - Database,Development,Python,Mia Moore,Bob Turner,51,1,0.635714286
279,1925,2012-03-04,2012-03-01,40,6000,0.02,150,5880,Brian Mautz,"Analog Devices, Inc.",Technology,Semiconductors,Bowling Green,42104,Kentucky,South,2012-03-06,2,Consulting - Business Model,Consulting,Python,Ethan Bird,Frank Mitchell,60,1,0.6
280,1925,2012-03-04,2012-03-01,7,875,0.08,125,805,Brian Mautz,"Analog Devices, Inc.",Technology,Semiconductors,Wichita,67212,Kansas,Central,2012-03-05,1,Training - Development,Training,Java,Madison Hill,Josh Martinez,58,1,0.536
5224,37188,2012-03-04,2012-03-01,24,2640,0.04,110,2534.4,Carol Hightower,Costco Wholesale Corporation,Consumer Services,Department/Specialty Retail Stores,West Seneca,14224,New York,East,2012-03-05,1,Development - Python,Development,Market Research,Isabella Douglas,Allen Young,75,1,0.318181818
6239,44199,2012-03-04,2012-03-01,12,1680,0.04,140,1612.8,Seth Chapman,Garmin Ltd.,Capital Goods,Industrial Machinery/Components,Dodge City,67801,Kansas,Central,2012-03-08,4,Development - Database,Development,Python,Emily Taylor,Josh Martinez,62,1,0.557142857
6522,46404,2012-03-04,2012-03-01,50,7500,0.05,150,7125,John Conant,Mylan Inc.,Health Care,Major Pharmaceuticals,Kent,44240,Ohio,East,2012-03-05,1,Consulting - Market Research,Consulting,SQL,Olivia Sullivan,Allen Young,53,1,0.646666667
6785,48322,2012-03-04,2012-03-01,14,1680,0.05,120,1596,Paul Hooks,Marriott International,Consumer Services,Hotels/Resorts,Menlo Park,94025,California,West,2012-03-05,1,Development - Business Logic,Development,Database,Alexander Edison,Bob Turner,70,1,0.416666667
7234,51559,2012-03-04,2012-03-01,34,4080,0.09,120,3712.8,David O'Rourke,"Wynn Resorts, Limited",Consumer Services,Hotels/Resorts,Sulphur Springs,75482,Texas,Central,2012-03-13,9,Development - Business Logic,Development,Database,Isabella Douglas,Josh Martinez,75,1,0.375
324,2240,2012-03-05,2012-03-01,17,2125,0.01,125,2103.75,Sarah Hopkins,"Equinix, Inc.",Public Utilities,Telecommunications Equipment,Columbia,38401,Tennessee,South,2012-03-06,1,Training - SQL,Training,Java,Emily Taylor,Frank Mitchell,62,1,0.504
325,2240,2012-03-05,2012-03-01,5,600,0.06,120,564,Sarah Hopkins,"Equinix, Inc.",Public Utilities,Telecommunications Equipment,Columbia,38401,Tennessee,South,2012-03-06,1,Development - Business Logic,Development,SQL,Emma Watson,Frank Mitchell,67,1,0.441666667
3467,24677,2012-03-05,2012-03-01,44,6600,0.05,150,6270,Joni Fritzler,PACCAR Inc.,Capital Goods,Auto Manufacturing,Tracy,95376,California,West,2012-03-07,2,Consulting - Business Model,Consulting,SQL,Abigail Young,Bob Turner,50,1,0.666666667
5987,42437,2012-03-05,2012-03-01,43,6450,0.06,150,6063,Denny Willingham,Bed Bath & Beyond Inc.,Consumer Services,Home Furnishings,Belle Glade,33430,Florida,South,2012-03-07,2,Consulting - Compensation,Consulting,Python,Isabella Douglas,Frank Mitchell,75,1,0.5
5988,42437,2012-03-05,2012-03-01,14,1680,0.03,120,1629.6,Denny Willingham,Bed Bath & Beyond Inc.,Consumer Services,Home Furnishings,Belle Glade,33430,Florida,South,2012-03-06,1,Development - Business Logic,Development,Business Logic,Michael Alister,Frank Mitchell,68,1,0.433333333
1957,13991,2012-03-06,2012-03-01,24,3600,0,150,3600,Cynthia Prichep,QUALCOMM Incorporated,Technology,Radio And Television Broadcasting And Communications Equipment,Gilroy,95020,California,West,2012-03-08,2,Consulting - Business Model,Consulting,Database,Ethan Bird,Bob Turner,60,1,0.6
1958,13991,2012-03-06,2012-03-01,21,2625,0.07,125,2441.25,Cynthia Prichep,QUALCOMM Incorporated,Technology,Radio And Television Broadcasting And Communications Equipment,Gilroy,95020,California,West,2012-03-07,1,Training - Javascript,Training,Tableau,Mia Moore,Bob Turner,51,1,0.592
2104,15044,2012-03-06,2012-03-01,42,6300,0.07,150,5859,Erica Percer,"Henry Schein, Inc.",Health Care,Medical Specialities,Fort Wayne,46806,Indiana,Central,2012-03-10,4,Consulting - Business Model,Consulting,Business Logic,Emma Watson,Josh Martinez,67,1,0.553333333
7272,51876,2012-03-06,2012-03-01,2,300,0.1,150,270,Victor Hane,"Dollar Tree, Inc.",Consumer Services,Department/Specialty Retail Stores,Saint Cloud,34769,Florida,South,2012-03-07,1,Consulting - Market Research,Consulting,.Net,Daniel Tusk,Frank Mitchell,45,1,0.7
7387,52645,2012-03-07,2012-03-01,11,1320,0.09,120,1201.2,Alan Daly,Avago Technologies Limited,Technology,Semiconductors,Round Rock,78664,Texas,Central,2012-03-12,5,Development - Business Logic,Development,Business Model,Emma Watson,Josh Martinez,67,1,0.441666667
7388,52645,2012-03-07,2012-03-01,10,1700,0.07,170,1581,Alan Daly,Avago Technologies Limited,Technology,Semiconductors,Rowlett,75088,Texas,Central,2012-03-16,9,Development - .Net,Development,Business Logic,Emma Watson,Josh Martinez,67,1,0.605882353
7775,55651,2012-03-07,2012-03-01,11,1650,0.05,150,1567.5,Helen Glantz,"Applied Materials, Inc.",Technology,Semiconductors,Pacifica,94044,California,West,2012-03-08,1,Consulting - Market Research,Consulting,Development,Alexander Edison,Bob Turner,70,1,0.533333333
7776,55651,2012-03-07,2012-03-01,41,5125,0.01,125,5073.75,Helen Glantz,"Applied Materials, Inc.",Technology,Semiconductors,Palm Coast,32137,Florida,South,2012-03-10,3,Training - SQL,Training,Javascript,Ava Wilson,Frank Mitchell,67,1,0.464
7777,55651,2012-03-07,2012-03-01,2,400,0,200,400,Helen Glantz,"Applied Materials, Inc.",Technology,Semiconductors,Palm Coast,32137,Florida,South,2012-03-08,1,Development - Big Data,Development,PHP,Liam Franklin,Frank Mitchell,52,1,0.74
8338,59586,2012-03-07,2012-03-01,25,2750,0.05,110,2612.5,Jenna Nguyen,"Expeditors International of Washington, Inc.",Transportation,Oil Refining/Marketing,Klamath Falls,97601,Oregon,West,2012-03-11,4,Development - Python,Development,.Net,Jayden Hamilton,Bob Turner,71,1,0.354545455
4420,31523,2012-03-08,2012-03-01,17,2550,0.1,150,2295,Joni Lebron,"Paychex, Inc.",Consumer Services,Diversified Commercial Services,Midland,79701,Texas,Central,2012-03-10,2,Consulting - Business Model,Consulting,Scala,Abigail Young,Josh Martinez,50,1,0.666666667
4421,31523,2012-03-08,2012-03-01,19,2090,0,110,2090,Joni Lebron,"Paychex, Inc.",Consumer Services,Diversified Commercial Services,Midland,79701,Texas,Central,2012-03-13,5,Development - PHP,Development,Java,Daniel Tusk,Josh Martinez,45,1,0.590909091
6945,49602,2012-03-08,2012-03-01,31,3875,0.03,125,3758.75,Andrew Love,DISH Network Corporation,Consumer Services,Television Services,Richland,99352,Washington,West,2012-03-09,1,Training - Tableau,Training,Javascript,Mia Moore,Bob Turner,51,1,0.592
7240,51620,2012-03-08,2012-03-01,12,2400,0.03,200,2328,Ben Lock,The Priceline Group Inc.,Miscellaneous,Business Services,Manchester,3101,New Hampshire,East,2012-03-09,1,Development - Big Data,Development,Scala,Jacob Manziel,Allen Young,57,1,0.715
424,2848,2012-03-09,2012-03-01,35,4375,0.06,125,4112.5,Emily Kriz,"Gilead Sciences, Inc.",Health Care,Biotechnology: Biological Products (No Diagnostic Substances),Prairie Village,66202,Kansas,Central,2012-03-11,2,Training - SQL,Training,Development,Alexander Edison,Josh Martinez,70,1,0.44
425,2848,2012-03-09,2012-03-01,8,1200,0.04,150,1152,Emily Kriz,"Gilead Sciences, Inc.",Health Care,Biotechnology: Biological Products (No Diagnostic Substances),Prairie Village,66202,Kansas,Central,2012-03-11,2,Consulting - Market Research,Consulting,Market Research,Isabella Douglas,Josh Martinez,75,1,0.5
3078,22085,2012-03-09,2012-03-01,41,4510,0.1,110,4059,Gary Shillingsburg,Liberty Interactive Corporation,Consumer Services,Catalog/Specialty Distribution,Brandon,33511,Florida,South,2012-03-11,2,Development - Python,Development,SQL,Liam Franklin,Frank Mitchell,52,1,0.527272727
3079,22085,2012-03-09,2012-03-01,27,5400,0.07,200,5022,Gary Shillingsburg,Liberty Interactive Corporation,Consumer Services,Catalog/Specialty Distribution,Brandon,33511,Florida,South,2012-03-09,0,Development - Big Data,Development,Business Logic,Emma Watson,Frank Mitchell,67,1,0.665
5996,42471,2012-03-09,2012-03-01,23,2760,0.09,120,2511.6,Darrin Ulpright,"Tesla Motors, Inc.",Capital Goods,Auto Manufacturing,Paramus,7652,New Jersey,East,2012-03-11,2,Development - Business Logic,Development,Business Logic,Sophia Dixon,Allen Young,71,1,0.408333333
996,7174,2012-03-10,2012-03-01,10,1250,0.06,125,1175,Thomas Ferrer,"American Airlines Group, Inc.",Transportation,Air Freight/Delivery Services,Escondido,92025,California,West,2012-03-12,2,Training - SQL,Training,Big Data,Madison Hill,Bob Turner,58,1,0.536
2331,16804,2012-03-10,2012-03-01,46,5060,0.08,110,4655.2,Ed Byrd,DIRECTV,Consumer Services,Telecommunications Equipment,Duncanville,75116,Texas,Central,2012-03-12,2,Development - Python,Development,Business Logic,Liam Franklin,Josh Martinez,52,1,0.527272727
2332,16804,2012-03-10,2012-03-01,36,3960,0.05,110,3762,Ed Byrd,DIRECTV,Consumer Services,Telecommunications Equipment,Duncanville,75116,Texas,Central,2012-03-11,1,Development - Python,Development,Python,Liam Franklin,Josh Martinez,52,1,0.527272727
3471,24707,2012-03-10,2012-03-01,14,1750,0,125,1750,Don Shami,"C.H. Robinson Worldwide, Inc.",Transportation,Oil Refining/Marketing,Bethlehem,18018,Pennsylvania,East,2012-03-11,1,Training - SQL,Training,Java,Michael Alister,Allen Young,68,1,0.456
3472,24707,2012-03-10,2012-03-01,3,420,0.1,140,378,Don Shami,"C.H. Robinson Worldwide, Inc.",Transportation,Oil Refining/Marketing,Bethlehem,18018,Pennsylvania,East,2012-03-12,2,Development - Database,Development,Javascript,Elizabeth Carter,Allen Young,52,1,0.628571429
7180,51237,2012-03-10,2012-03-01,26,3900,0.03,150,3783,John Conant,Mylan Inc.,Health Care,Major Pharmaceuticals,Kent,44240,Ohio,East,2012-03-12,2,Consulting - Market Research,Consulting,Python,Mia Moore,Allen Young,51,1,0.66
7453,53156,2012-03-10,2012-03-01,47,9400,0.07,200,8742,Bryan Hirsh,"Amazon.com, Inc.",Consumer Services,Catalog/Specialty Distribution,Urbana,61801,Illinois,Central,2012-03-11,1,Development - Scala,Development,SQL,Liam Franklin,Josh Martinez,52,1,0.74
7798,55779,2012-03-10,2012-03-01,26,3250,0.08,125,2990,Katherine Sewall,"American Airlines Group, Inc.",Transportation,Air Freight/Delivery Services,Lima,45801,Ohio,East,2012-03-11,1,Training - Development,Training,Big Data,Mason Gibson,Allen Young,71,1,0.432
434,2912,2012-03-11,2012-03-01,7,1050,0.08,150,966,Tamara O'Brill,Symantec Corporation,Technology,Computer Software: Prepackaged Software,Pflugerville,78660,Texas,Central,2012-03-13,2,Consulting - Strategy,Consulting,Java,Ethan Bird,Josh Martinez,60,1,0.6
435,2912,2012-03-11,2012-03-01,9,990,0.05,110,940.5,Tamara O'Brill,Symantec Corporation,Technology,Computer Software: Prepackaged Software,Pflugerville,78660,Texas,Central,2012-03-18,7,Development - Python,Development,Compensation,Madison Hill,Josh Martinez,58,1,0.472727273
5952,42243,2012-03-11,2012-03-01,42,6720,0.02,160,6585.6,Phillip West,Liberty Interactive Corporation,Consumer Services,Catalog/Specialty Distribution,Port Charlotte,33952,Florida,South,2012-03-13,2,Development - Java,Development,Market Research,Alexander Edison,Frank Mitchell,70,1,0.5625
5953,42243,2012-03-11,2012-03-01,19,2090,0.05,110,1985.5,Phillip West,Liberty Interactive Corporation,Consumer Services,Catalog/Specialty Distribution,Port Charlotte,33952,Florida,South,2012-03-13,2,Development - Python,Development,Python,Sophia Dixon,Frank Mitchell,71,1,0.354545455
6561,46631,2012-03-11,2012-03-01,39,4290,0.05,110,4075.5,Harold McCarthy,"American Airlines Group, Inc.",Transportation,Air Freight/Delivery Services,South Lake Tahoe,96150,California,West,2012-03-13,2,Development - Python,Development,Big Data,Abigail Young,Bob Turner,50,1,0.545454545
2367,17152,2012-03-12,2012-03-01,32,6400,0.06,200,6016,Dave Hart,VimpelCom Ltd.,Public Utilities,Telecommunications Equipment,Brownsville,78521,Texas,Central,2012-03-13,1,Development - Big Data,Development,Strategy,Emily Taylor,Josh Martinez,62,1,0.69
3300,23584,2012-03-12,2012-03-01,14,2100,0.06,150,1974,Alan Reichenbach,Amgen Inc.,Health Care,Biotechnology: Biological Products (No Diagnostic Substances),Streamwood,60107,Illinois,Central,2012-03-14,2,Consulting - Strategy,Consulting,Market Research,Ethan Bird,Josh Martinez,60,1,0.6
4505,32067,2012-03-12,2012-03-01,27,4050,0.06,150,3807,Christina Yedwab,"Gilead Sciences, Inc.",Health Care,Biotechnology: Biological Products (No Diagnostic Substances),Raytown,64133,MO,Central,2012-03-13,1,Consulting - Market Research,Consulting,Business Model,Daniel Tusk,Josh Martinez,45,1,0.7
6229,44099,2012-03-12,2012-03-01,34,5440,0.1,160,4896,Alan Brumley,Bed Bath & Beyond Inc.,Consumer Services,Home Furnishings,Napa,94559,California,West,2012-03-14,2,Development - Java,Development,Market Research,Michael Alister,Bob Turner,68,1,0.575
6230,44099,2012-03-12,2012-03-01,19,3040,0.1,160,2736,Alan Brumley,Bed Bath & Beyond Inc.,Consumer Services,Home Furnishings,Napa,94559,California,West,2012-03-14,2,Development - Java,Development,Python,Ava Wilson,Bob Turner,67,1,0.58125
2801,20194,2012-03-13,2012-03-01,10,1250,0.1,125,1125,Dennis Cyprus,Amgen Inc.,Health Care,Biotechnology: Biological Products (No Diagnostic Substances),Pittsburg,66762,Kansas,Central,2012-03-15,2,Training - SQL,Training,Python,Liam Franklin,Josh Martinez,52,1,0.584
4174,29607,2012-03-13,2012-03-01,20,2200,0.05,110,2090,Ken Budd,Bed Bath & Beyond Inc.,Consumer Services,Home Furnishings,Mount Lebanon,15228,Pennsylvania,East,2012-03-15,2,Development - Python,Development,Strategy,Isabella Douglas,Allen Young,75,1,0.318181818
4947,35173,2012-03-13,2012-03-01,29,3625,0.09,125,3298.75,Mike Farhat,"Amazon.com, Inc.",Consumer Services,Catalog/Specialty Distribution,Moscow,83843,Idaho,West,2012-03-15,2,Training - Tableau,Training,SQL,Ava Wilson,Bob Turner,67,1,0.464
4948,35173,2012-03-13,2012-03-01,13,1950,0.02,150,1911,Mike Farhat,"Amazon.com, Inc.",Consumer Services,Catalog/Specialty Distribution,Moscow,83843,Idaho,West,2012-03-15,2,Consulting - Market Research,Consulting,Python,Mia Moore,Bob Turner,51,1,0.66
289,2022,2012-03-14,2012-03-01,45,7650,0,170,7650,Alan Daly,Avago Technologies Limited,Technology,Semiconductors,Port Arthur,77642,Texas,Central,2012-03-15,1,Development - .Net,Development,Development,Liam Franklin,Josh Martinez,52,1,0.694117647
2064,14784,2012-03-14,2012-03-01,43,5375,0.04,125,5160,Brenda Hildebrand,"Whole Foods Market, Inc.",Consumer Services,Food Chains,West Babylon,11704,New York,East,2012-03-15,1,Training - Javascript,Training,SQL,Noah Smith,Allen Young,59,1,0.528
3854,27490,2012-03-14,2012-03-01,18,2880,0.02,160,2822.4,Daniel Atkinson,"Staples, Inc.",Consumer Services,Other Specialty Stores,Mustang,73064,Oklahoma,Central,2012-03-16,2,Development - Java,Development,Compensation,Noah Smith,Josh Martinez,59,1,0.63125
6089,43138,2012-03-14,2012-03-01,43,6880,0.06,160,6467.2,Matt Bertelson,The Priceline Group Inc.,Miscellaneous,Business Services,College Park,30337,Georgia,South,2012-03-18,4,Development - Java,Development,.Net,Jayden Hamilton,Frank Mitchell,71,1,0.55625
6090,43138,2012-03-14,2012-03-01,50,6250,0.07,125,5812.5,Matt Bertelson,The Priceline Group Inc.,Miscellaneous,Business Services,College Park,30337,Georgia,South,2012-03-16,2,Training - Tableau,Training,Python,Jayden Hamilton,Frank Mitchell,71,1,0.432
2422,17571,2012-03-15,2012-03-01,32,4480,0.01,140,4435.2,Thomas Ferrer,"American Airlines Group, Inc.",Transportation,Air Freight/Delivery Services,Escondido,92025,California,West,2012-03-16,1,Development - Database,Development,Java,Elizabeth Carter,Bob Turner,52,1,0.628571429
2423,17571,2012-03-15,2012-03-01,50,7500,0.02,150,7350,Thomas Ferrer,"American Airlines Group, Inc.",Transportation,Air Freight/Delivery Services,Eureka,95501,California,West,2012-03-17,2,Consulting - Business Model,Consulting,SQL,Olivia Sullivan,Bob Turner,53,1,0.646666667
2659,19207,2012-03-15,2012-03-01,23,4600,0.1,200,4140,Cindy Mathis,Liberty Global plc,Consumer Services,Television Services,Peoria,85345,Arizona,West,2012-03-17,2,Development - Scala,Development,SQL,Mason Gibson,Bob Turner,71,1,0.645
2660,19207,2012-03-15,2012-03-01,11,1540,0,140,1540,Cindy Mathis,Liberty Global plc,Consumer Services,Television Services,Peoria,85345,Arizona,West,2012-03-16,1,Development - Database,Development,Python,Olivia Sullivan,Bob Turner,53,1,0.621428571
2930,21223,2012-03-15,2012-03-01,3,375,0.1,125,337.5,Harold Rosenblatt,Apple Inc.,Technology,Computer Manufacturing,Lawrence,46226,Indiana,Central,2012-03-16,1,Training - Tableau,Training,Scala,Daniel Tusk,Josh Martinez,45,1,0.64
2931,21223,2012-03-15,2012-03-01,8,1000,0.03,125,970,Harold Rosenblatt,Apple Inc.,Technology,Computer Manufacturing,Lawrence,46226,Indiana,Central,2012-03-16,1,Training - SQL,Training,SQL,Ava Wilson,Josh Martinez,67,1,0.464
2999,21607,2012-03-15,2012-03-01,17,2040,0.09,120,1856.4,Heather Maddox,Altera Corporation,Technology,Semiconductors,Des Plaines,60016,Illinois,Central,2012-03-17,2,Development - Business Logic,Development,Java,Mason Gibson,Josh Martinez,71,1,0.408333333
7431,52995,2012-03-15,2012-03-01,8,1280,0.03,160,1241.6,Nat Hallsten,"Charter Communications, Inc.",Consumer Services,Television Services,Moore,73160,Oklahoma,Central,2012-03-15,0,Development - Java,Development,Market Research,Ava Wilson,Josh Martinez,67,1,0.58125
7505,53571,2012-03-15,2012-03-01,21,3360,0.05,160,3192,Dan MacKendrick,"Ross Stores, Inc.",Consumer Services,Clothing/Shoe/Accessory Stores,Hesperia,92345,California,West,2012-03-17,2,Development - Java,Development,Business Logic,Alexander Edison,Bob Turner,70,1,0.5625
641,4515,2012-03-16,2012-03-01,7,1050,0.02,150,1029,Vivian Emerson,Fastenal Company,Consumer Services,RETAIL: Building Materials,Odenton,21113,Maryland,East,2012-03-17,1,Consulting - Strategy,Consulting,Business Model,Liam Franklin,Allen Young,52,1,0.653333333
2486,18112,2012-03-16,2012-03-01,13,1430,0.06,110,1344.2,Henry Foster,Avago Technologies Limited,Technology,Semiconductors,College Station,77840,Texas,Central,2012-03-17,1,Development - Python,Development,SQL,Alexander Edison,Josh Martinez,70,1,0.363636364
7745,55458,2012-03-16,2012-03-01,32,5120,0.07,160,4761.6,Shahid Boland,"Henry Schein, Inc.",Health Care,Medical Specialities,Sheboygan,53081,Wisconsin,Central,2012-03-18,2,Development - Java,Development,PHP,Alexander Edison,Josh Martinez,70,1,0.5625
7746,55458,2012-03-16,2012-03-01,13,2600,0,200,2600,Shahid Boland,"Henry Schein, Inc.",Health Care,Medical Specialities,Sheboygan,53081,Wisconsin,Central,2012-03-18,2,Development - Big Data,Development,Python,Alexander Edison,Josh Martinez,70,1,0.65
1551,11202,2012-03-17,2012-03-01,8,1280,0.05,160,1216,Barry Duston,Mylan Inc.,Health Care,Major Pharmaceuticals,Forest Park,60130,Illinois,Central,2012-03-18,1,Development - Java,Development,Market Research,Isabella Douglas,Josh Martinez,75,1,0.53125
3464,24672,2012-03-17,2012-03-01,5,625,0.02,125,612.5,Stuart Epp,QUALCOMM Incorporated,Technology,Radio And Television Broadcasting And Communications Equipment,Shirley,11967,New York,East,2012-03-20,3,Training - SQL,Training,Tableau,Daniel Tusk,Allen Young,45,1,0.64
3465,24672,2012-03-17,2012-03-01,37,4070,0.09,110,3703.7,Stuart Epp,QUALCOMM Incorporated,Technology,Radio And Television Broadcasting And Communications Equipment,Shirley,11967,New York,East,2012-03-19,2,Development - Python,Development,SQL,Madison Hill,Allen Young,58,1,0.472727273
3466,24672,2012-03-17,2012-03-01,37,7400,0.06,200,6956,Stuart Epp,QUALCOMM Incorporated,Technology,Radio And Television Broadcasting And Communications Equipment,Shirley,11967,New York,East,2012-03-19,2,Development - Big Data,Development,Java,William Bufont,Allen Young,62,1,0.69
6992,49953,2012-03-17,2012-03-01,18,2700,0.1,150,2430,Toby Arntzen,"Autodesk, Inc.",Technology,Computer Software: Prepackaged Software,Franklin,37064,Tennessee,South,2012-03-18,1,Consulting - Business Model,Consulting,Big Data,Jayden Hamilton,Frank Mitchell,71,1,0.526666667
6993,49953,2012-03-17,2012-03-01,36,3960,0.09,110,3603.6,Toby Arntzen,"Autodesk, Inc.",Technology,Computer Software: Prepackaged Software,Franklin,37064,Tennessee,South,2012-03-17,0,Development - Python,Development,Business Logic,Jacob Manziel,Frank Mitchell,57,1,0.481818182
7710,55268,2012-03-17,2012-03-01,11,1650,0.08,150,1518,Patrick Webber,KLA-Tencor Corporation,Capital Goods,Electronic Components,Jackson,49201,Michigan,Central,2012-03-18,1,Consulting - Business Model,Consulting,SQL,William Bufont,Josh Martinez,62,1,0.586666667
52,322,2012-03-18,2012-03-01,20,3000,0.08,150,2760,Giulietta Black,"TripAdvisor, Inc.",Technology,"Computer Software: Programming, Data Processing",Allen Park,48101,Michigan,Central,2012-03-20,2,Consulting - Market Research,Consulting,Java,Abigail Young,Josh Martinez,50,1,0.666666667
53,322,2012-03-18,2012-03-01,46,5060,0.1,110,4554,Giulietta Black,"TripAdvisor, Inc.",Technology,"Computer Software: Programming, Data Processing",Ann Arbor,48104,Michigan,Central,2012-03-20,2,Development - Python,Development,Database,Michael Alister,Josh Martinez,68,1,0.381818182
3730,26660,2012-03-18,2012-03-01,1,110,0.1,110,99,Carol Hightower,Costco Wholesale Corporation,Consumer Services,Department/Specialty Retail Stores,West Islip,11795,New York,East,2012-03-18,0,Development - Python,Development,Business Model,Sophia Dixon,Allen Young,71,1,0.354545455
56,324,2012-03-19,2012-03-01,25,3750,0.02,150,3675,Frank Price,"Micron Technology, Inc.",Technology,Semiconductors,Sanford,27237,North Carolina,South,2012-03-21,2,Consulting - Market Research,Consulting,Tableau,Noah Smith,Frank Mitchell,59,1,0.606666667
267,1856,2012-03-19,2012-03-01,24,4080,0.08,170,3753.6,Alex Daniels,Cerner Corporation,Technology,EDP Services,Leawood,66209,Kansas,Central,2012-03-21,2,Development - .Net,Development,Strategy,Isabella Douglas,Josh Martinez,75,1,0.558823529
268,1856,2012-03-19,2012-03-01,43,6450,0.05,150,6127.5,Alex Daniels,Cerner Corporation,Technology,EDP Services,Leawood,66209,Kansas,Central,2012-03-20,1,Consulting - Market Research,Consulting,Python,Mia Moore,Josh Martinez,51,1,0.66
269,1856,2012-03-19,2012-03-01,44,6600,0.1,150,5940,Alex Daniels,Cerner Corporation,Technology,EDP Services,Leawood,66209,Kansas,Central,2012-03-20,1,Consulting - Market Research,Consulting,Big Data,Emily Taylor,Josh Martinez,62,1,0.586666667
3489,24865,2012-03-19,2012-03-01,46,5060,0.04,110,4857.6,Valerie Pelletier,"Discovery Communications, Inc.",Consumer Services,Television Services,Tampa,33614,Florida,South,2012-03-20,1,Development - PHP,Development,Java,Abigail Young,Frank Mitchell,50,1,0.545454545
7623,54534,2012-03-19,2012-03-01,16,1760,0.01,110,1742.4,Tracy Haushalter,"C.H. Robinson Worldwide, Inc.",Transportation,Oil Refining/Marketing,Granite Bay,95746,California,West,2012-03-21,2,Development - Python,Development,PHP,Elizabeth Carter,Bob Turner,52,1,0.527272727
3717,26535,2012-03-20,2012-03-01,33,5280,0.02,160,5174.4,Candace Kendrick,Bed Bath & Beyond Inc.,Consumer Services,Home Furnishings,San Marcos,78666,Texas,Central,2012-03-22,2,Development - Java,Development,Business Logic,Jacob Manziel,Josh Martinez,57,1,0.64375
4230,30051,2012-03-20,2012-03-01,42,5040,0.02,120,4939.2,Catherine House,Cognizant Technology Solutions Corporation,Technology,EDP Services,Salem,97301,Oregon,West,2012-03-21,1,Development - Business Logic,Development,Java,Emma Watson,Bob Turner,67,1,0.441666667
6938,49510,2012-03-20,2012-03-01,16,1920,0.04,120,1843.2,Luke Ballentine,Intuit Inc.,Technology,Computer Software: Prepackaged Software,Des Moines,50315,Iowa,Central,2012-03-21,1,Development - Business Logic,Development,.Net,Madison Hill,Josh Martinez,58,1,0.516666667
7684,55073,2012-03-20,2012-03-01,40,6000,0.01,150,5940,Kelly Thomas,"Amazon.com, Inc.",Consumer Services,Catalog/Specialty Distribution,Grapevine,76051,Texas,Central,2012-03-20,0,Consulting - Market Research,Consulting,Big Data,Jacob Manziel,Josh Martinez,57,1,0.62
8121,58051,2012-03-20,2012-03-01,6,900,0,150,900,Pauline Wardle,"Mattel, Inc.",Consumer Non-Durables,Recreational Products/Toys,Oklahoma City,73120,Oklahoma,Central,2012-03-22,2,Consulting - Business Model,Consulting,Java,Jacob Manziel,Josh Martinez,57,1,0.62
673,4705,2012-03-21,2012-03-01,16,3200,0.09,200,2912,Adrian Ferguson,Altera Corporation,Technology,Semiconductors,Anacortes,98221,Washington,West,2012-03-23,2,Development - Big Data,Development,Scala,Ethan Bird,Bob Turner,60,1,0.7
4431,31586,2012-03-21,2012-03-01,22,3300,0.05,150,3135,Amy Murray,"Citrix Systems, Inc.",Technology,Computer Software: Prepackaged Software,Knoxville,37918,Tennessee,South,2012-03-25,4,Consulting - Business Model,Consulting,Big Data,Ava Wilson,Frank Mitchell,67,1,0.553333333
4432,31586,2012-03-21,2012-03-01,25,3750,0,150,3750,Amy Murray,"Citrix Systems, Inc.",Technology,Computer Software: Prepackaged Software,Knoxville,37918,Tennessee,South,2012-03-30,9,Consulting - Market Research,Consulting,Business Logic,Elizabeth Carter,Frank Mitchell,52,1,0.653333333
1345,9826,2012-03-22,2012-03-01,7,1050,0.01,150,1039.5,Irene Rosenberg,Celgene Corporation,Health Care,Major Pharmaceuticals,Palm Coast,32137,Florida,South,2012-03-24,2,Consulting - Business Model,Consulting,Business Model,Jayden Hamilton,Frank Mitchell,71,1,0.526666667
1565,11301,2012-03-22,2012-03-01,29,4350,0.04,150,4176,Tony Phan,Broadcom Corporation,Technology,Semiconductors,Adrian,49221,Michigan,Central,2012-03-22,0,Consulting - Business Model,Consulting,Business Model,Emily Taylor,Josh Martinez,62,1,0.586666667
4210,29926,2012-03-22,2012-03-01,9,1440,0,160,1440,Roy Schnelling,Biogen Idec Inc.,Health Care,Biotechnology: Biological Products (No Diagnostic Substances),Burien,98146,Washington,West,2012-03-24,2,Development - Java,Development,Big Data,Mason Gibson,Bob Turner,71,1,0.55625
583,3973,2012-03-23,2012-03-01,21,2625,0.06,125,2467.5,Bobby Lacy,"Tesla Motors, Inc.",Capital Goods,Auto Manufacturing,Lincoln,68502,Nebraska,Central,2012-03-25,2,Training - SQL,Training,Scala,Emily Taylor,Josh Martinez,62,1,0.504
1082,7941,2012-03-23,2012-03-01,50,10000,0.01,200,9900,Neil Gilcrest,"Discovery Communications, Inc.",Consumer Services,Television Services,Salisbury,28144,North Carolina,South,2012-03-30,7,Development - Big Data,Development,Development,Ava Wilson,Frank Mitchell,67,1,0.665
1718,12352,2012-03-23,2012-03-01,5,800,0.07,160,744,Hunter Chen,Biogen Idec Inc.,Health Care,Biotechnology: Biological Products (No Diagnostic Substances),Downers Grove,60516,Illinois,Central,2012-03-24,1,Development - Java,Development,Tableau,Ethan Bird,Josh Martinez,60,1,0.625
2162,15616,2012-03-23,2012-03-01,12,1800,0.01,150,1782,Carlos Kinney,"C.H. Robinson Worldwide, Inc.",Transportation,Oil Refining/Marketing,Pomona,91767,California,West,2012-03-24,1,Consulting - Business Model,Consulting,Tableau,Noah Smith,Bob Turner,59,1,0.606666667
2163,15616,2012-03-23,2012-03-01,34,4080,0.09,120,3712.8,Carlos Kinney,"C.H. Robinson Worldwide, Inc.",Transportation,Oil Refining/Marketing,Pomona,91767,California,West,2012-03-25,2,Development - Business Logic,Development,Tableau,Noah Smith,Bob Turner,59,1,0.508333333
4209,29921,2012-03-23,2012-03-01,33,5280,0.06,160,4963.2,Sonia Kane,Marriott International,Consumer Services,Hotels/Resorts,Leavenworth,66048,Kansas,Central,2012-03-25,2,Development - Java,Development,Compensation,Liam Franklin,Josh Martinez,52,1,0.675
5469,38853,2012-03-23,2012-03-01,13,1950,0.04,150,1872,Duane Abelman,"Citrix Systems, Inc.",Technology,Computer Software: Prepackaged Software,Omaha,68046,Nebraska,Central,2012-03-27,4,Consulting - Market Research,Consulting,Development,Alexander Edison,Josh Martinez,70,1,0.533333333
5596,39655,2012-03-23,2012-03-01,35,5250,0.03,150,5092.5,Roy Peterman,Broadcom Corporation,Technology,Semiconductors,Hays,67601,Kansas,Central,2012-03-23,0,Consulting - Business Model,Consulting,Strategy,Abigail Young,Josh Martinez,50,1,0.666666667
6249,44261,2012-03-23,2012-03-01,31,4960,0.01,160,4910.4,Juliana Miller,Sirius XM Holdings Inc.,Consumer Services,Broadcasting,San Francisco,94110,California,West,2012-03-25,2,Development - Java,Development,Database,Mia Moore,Bob Turner,51,1,0.68125
6250,44261,2012-03-23,2012-03-01,34,4250,0.05,125,4037.5,Juliana Miller,Sirius XM Holdings Inc.,Consumer Services,Broadcasting,San Francisco,94110,California,West,2012-03-25,2,Training - Tableau,Training,Javascript,Ethan Bird,Bob Turner,60,1,0.52
6251,44261,2012-03-23,2012-03-01,1,150,0.05,150,142.5,Juliana Miller,Sirius XM Holdings Inc.,Consumer Services,Broadcasting,San Francisco,94110,California,West,2012-03-24,1,Consulting - Strategy,Consulting,Business Logic,Mason Gibson,Bob Turner,71,1,0.526666667
6252,44261,2012-03-23,2012-03-01,10,1500,0.07,150,1395,Juliana Miller,Sirius XM Holdings Inc.,Consumer Services,Broadcasting,San Francisco,94110,California,West,2012-03-26,3,Consulting - Market Research,Consulting,Java,William Bufont,Bob Turner,62,1,0.586666667
6947,49634,2012-03-23,2012-03-01,39,6630,0.06,170,6232.2,Sally Knudson,Comcast Corporation,Consumer Services,Television Services,Madison Heights,48071,Michigan,Central,2012-03-24,1,Development - .Net,Development,PHP,Ethan Bird,Josh Martinez,60,1,0.647058824
6948,49634,2012-03-23,2012-03-01,3,450,0.05,150,427.5,Sally Knudson,Comcast Corporation,Consumer Services,Television Services,Madison Heights,48071,Michigan,Central,2012-03-25,2,Consulting - Business Model,Consulting,Strategy,Ava Wilson,Josh Martinez,67,1,0.553333333
6949,49634,2012-03-23,2012-03-01,45,7200,0.02,160,7056,Sally Knudson,Comcast Corporation,Consumer Services,Television Services,Sioux City,51106,Iowa,Central,2012-03-25,2,Development - Java,Development,Python,Sophia Dixon,Josh Martinez,71,1,0.55625
254,1764,2012-03-24,2012-03-01,7,770,0.1,110,693,Hallie Fritzler,Yahoo! Inc.,Technology,EDP Services,Coos Bay,97420,Oregon,West,2012-03-27,3,Development - Python,Development,Business Logic,Michael Alister,Bob Turner,68,1,0.381818182
766,5473,2012-03-24,2012-03-01,42,4620,0.09,110,4204.2,Shahid Boyes,"Illumina, Inc.",Capital Goods,Biotechnology: Laboratory Analytical Instruments,Mount Pleasant,48858,Michigan,Central,2012-03-26,2,Development - PHP,Development,SQL,Mia Moore,Josh Martinez,51,1,0.536363636
1340,9794,2012-03-24,2012-03-01,25,3500,0.1,140,3150,Scott Bell,"Fiserv, Inc.",Technology,EDP Services,Louisville,80027,Colorado,West,2012-03-25,1,Development - Front End Web,Development,PHP,Mason Gibson,Bob Turner,71,1,0.492857143
2277,16390,2012-03-24,2012-03-01,8,1120,0.1,140,1008,Frank Catlett,"Netflix, Inc.",Consumer Services,Consumer Electronics/Video Chains,Tooele,84074,Utah,West,2012-03-26,2,Development - Front End Web,Development,Business Logic,Alexander Edison,Bob Turner,70,1,0.5
6465,46023,2012-03-24,2012-03-01,50,8500,0.07,170,7905,Resi Gonzalez,Symantec Corporation,Technology,Computer Software: Prepackaged Software,Caldwell,83605,Idaho,West,2012-03-25,1,Development - .Net,Development,Python,Mia Moore,Bob Turner,51,1,0.7
8322,59491,2012-03-24,2012-03-01,8,1280,0.09,160,1164.8,Greg Hansen,Vodafone Group Plc,Public Utilities,Telecommunications Equipment,Cornelius,28031,North Carolina,South,2012-03-25,1,Development - Java,Development,Python,Ava Wilson,Frank Mitchell,67,1,0.58125
8323,59491,2012-03-24,2012-03-01,6,960,0.03,160,931.2,Greg Hansen,Vodafone Group Plc,Public Utilities,Telecommunications Equipment,Cornelius,28031,North Carolina,South,2012-03-24,0,Development - Java,Development,Big Data,Ava Wilson,Frank Mitchell,67,1,0.58125
8324,59491,2012-03-24,2012-03-01,46,5750,0.06,125,5405,Greg Hansen,Vodafone Group Plc,Public Utilities,Telecommunications Equipment,Cornelius,28031,North Carolina,South,2012-03-26,2,Training - SQL,Training,Strategy,Daniel Tusk,Frank Mitchell,45,1,0.64
8325,59491,2012-03-24,2012-03-01,31,4960,0.04,160,4761.6,Greg Hansen,Vodafone Group Plc,Public Utilities,Telecommunications Equipment,East Cleveland,44112,Ohio,East,2012-03-27,3,Development - Java,Development,Python,Olivia Sullivan,Allen Young,53,1,0.66875
1534,11045,2012-03-25,2012-03-01,35,3850,0.04,110,3696,Eugene Liston,Liberty Media Corporation,Consumer Services,Broadcasting,Aurora,80013,Colorado,West,2012-03-26,1,Development - Python,Development,Market Research,Isabella Douglas,Bob Turner,75,1,0.318181818
581,3970,2012-03-26,2012-03-01,39,5850,0.07,150,5440.5,Christina Rozendal,"Twenty-First Century Fox, Inc.",Consumer Services,Television Services,Montclair,22025,Virginia,South,2012-03-28,2,Consulting - Business Model,Consulting,Database,Noah Smith,Frank Mitchell,59,1,0.606666667
582,3970,2012-03-26,2012-03-01,13,2600,0.05,200,2470,Christina Rozendal,"Twenty-First Century Fox, Inc.",Consumer Services,Television Services,Montclair,22025,Virginia,South,2012-03-27,1,Development - Big Data,Development,Business Model,Liam Franklin,Frank Mitchell,52,1,0.74
960,6950,2012-03-26,2012-03-01,4,600,0.08,150,552,Dianna Van Huff,Biogen Idec Inc.,Health Care,Biotechnology: Biological Products (No Diagnostic Substances),Hoboken,7030,New Jersey,East,2012-03-28,2,Consulting - Market Research,Consulting,Java,William Bufont,Allen Young,62,1,0.586666667
3439,24546,2012-03-26,2012-03-01,7,980,0.04,140,940.8,Edward Bzostek,"Equinix, Inc.",Public Utilities,Telecommunications Equipment,Tyler,75701,Texas,Central,2012-03-27,1,Development - Front End Web,Development,Business Model,Emily Taylor,Josh Martinez,62,1,0.557142857
5785,41056,2012-03-26,2012-03-01,4,600,0.08,150,552,Dario Wiediger,"Stericycle, Inc.",Basic Industries,Environmental Services,Scottsdale,85254,Arizona,West,2012-03-29,3,Consulting - Business Model,Consulting,Java,Olivia Sullivan,Bob Turner,53,1,0.646666667
2911,20995,2012-03-27,2012-03-01,37,4625,0.01,125,4578.75,Jill Huston,Intel Corporation,Technology,Semiconductors,Laguna Hills,92653,California,West,2012-03-28,1,Training - Tableau,Training,Strategy,Jacob Manziel,Bob Turner,57,1,0.544
5024,35814,2012-03-27,2012-03-01,11,1375,0.08,125,1265,Karen Jacobs,VimpelCom Ltd.,Public Utilities,Telecommunications Equipment,San Francisco,94110,California,West,2012-03-28,1,Training - SQL,Training,Python,William Bufont,Bob Turner,62,1,0.504
7751,55462,2012-03-27,2012-03-01,13,2080,0.06,160,1955.2,Shaun O'Brian,KLA-Tencor Corporation,Capital Goods,Electronic Components,Moorhead,56560,Minnesota,Central,2012-03-29,2,Development - Java,Development,Market Research,William Bufont,Josh Martinez,62,1,0.6125
7752,55462,2012-03-27,2012-03-01,31,4650,0.05,150,4417.5,Shaun O'Brian,KLA-Tencor Corporation,Capital Goods,Electronic Components,Moorhead,56560,Minnesota,Central,2012-03-28,1,Consulting - Business Model,Consulting,Business Model,Elizabeth Carter,Josh Martinez,52,1,0.653333333
7753,55462,2012-03-27,2012-03-01,35,5250,0.09,150,4777.5,Shaun O'Brian,KLA-Tencor Corporation,Capital Goods,Electronic Components,Moorhead,56560,Minnesota,Central,2012-03-28,1,Consulting - Market Research,Consulting,Market Research,Isabella Douglas,Josh Martinez,75,1,0.5
1446,10439,2012-03-28,2012-03-01,41,6560,0,160,6560,Raymond O'Donnell,"Stericycle, Inc.",Basic Industries,Environmental Services,Bellevue,98006,Washington,West,2012-03-30,2,Development - Java,Development,SQL,Jayden Hamilton,Bob Turner,71,1,0.55625
1447,10439,2012-03-28,2012-03-01,30,4500,0.02,150,4410,Raymond O'Donnell,"Stericycle, Inc.",Basic Industries,Environmental Services,Bellevue,98006,Washington,West,2012-03-30,2,Consulting - Business Model,Consulting,Business Logic,Abigail Young,Bob Turner,50,1,0.666666667
1448,10439,2012-03-28,2012-03-01,27,5400,0.09,200,4914,Raymond O'Donnell,"Stericycle, Inc.",Basic Industries,Environmental Services,Bellevue,98006,Washington,West,2012-03-29,1,Development - Scala,Development,Big Data,Jacob Manziel,Bob Turner,57,1,0.715
1449,10439,2012-03-28,2012-03-01,46,5750,0.01,125,5692.5,Raymond O'Donnell,"Stericycle, Inc.",Basic Industries,Environmental Services,Bellevue,98006,Washington,West,2012-03-30,2,Training - SQL,Training,.Net,Emily Taylor,Bob Turner,62,1,0.504
2544,18464,2012-03-28,2012-03-01,27,4590,0.02,170,4498.2,Brian Money,Adobe Systems Incorporated,Technology,Computer Software: Prepackaged Software,Saint Louis Park,55416,Minnesota,Central,2012-03-30,2,Development - .Net,Development,Market Research,Elizabeth Carter,Josh Martinez,52,1,0.694117647
2545,18464,2012-03-28,2012-03-01,37,4625,0.01,125,4578.75,Brian Money,Adobe Systems Incorporated,Technology,Computer Software: Prepackaged Software,Saint Louis Park,55416,Minnesota,Central,2012-03-28,0,Training - Tableau,Training,.Net,Jayden Hamilton,Josh Martinez,71,1,0.432
2546,18464,2012-03-28,2012-03-01,31,3410,0.05,110,3239.5,Brian Money,Adobe Systems Incorporated,Technology,Computer Software: Prepackaged Software,Saint Louis Park,55416,Minnesota,Central,2012-03-30,2,Development - Python,Development,Python,Liam Franklin,Josh Martinez,52,1,0.527272727
2547,18464,2012-03-28,2012-03-01,41,5740,0.01,140,5682.6,Brian Money,Adobe Systems Incorporated,Technology,Computer Software: Prepackaged Software,Saint Louis Park,55416,Minnesota,Central,2012-03-30,2,Development - Database,Development,SQL,Michael Alister,Josh Martinez,68,1,0.514285714
3115,22373,2012-03-28,2012-03-01,26,2860,0.05,110,2717,Candace Kendrick,Bed Bath & Beyond Inc.,Consumer Services,Home Furnishings,San Marcos,78666,Texas,Central,2012-03-29,1,Development - PHP,Development,Python,Abigail Young,Josh Martinez,50,1,0.545454545
3128,22466,2012-03-28,2012-03-01,31,3875,0.07,125,3603.75,Tamara Gordon,Tractor Supply Company,Consumer Services,RETAIL: Building Materials,Twentynine Palms,92277,California,West,2012-04-04,7,Training - Development,Training,Business Model,Michael Alister,Bob Turner,68,1,0.456
3129,22466,2012-03-28,2012-03-01,40,4400,0.02,110,4312,Tamara Gordon,Tractor Supply Company,Consumer Services,RETAIL: Building Materials,Twentynine Palms,92277,California,West,2012-04-04,7,Development - Python,Development,Strategy,Mia Moore,Bob Turner,51,1,0.536363636
3785,26979,2012-03-28,2012-03-01,43,4730,0.05,110,4493.5,Tom Jones,"Activision Blizzard, Inc",Technology,Computer Software: Prepackaged Software,Eugene,97405,Oregon,West,2012-03-30,2,Development - Python,Development,PHP,Emily Taylor,Bob Turner,62,1,0.436363636
3786,26979,2012-03-28,2012-03-01,50,7500,0.09,150,6825,Tom Jones,"Activision Blizzard, Inc",Technology,Computer Software: Prepackaged Software,Eugene,97405,Oregon,West,2012-03-30,2,Consulting - Market Research,Consulting,Development,Mason Gibson,Bob Turner,71,1,0.526666667
4113,29280,2012-03-28,2012-03-01,19,2280,0,120,2280,Bill Black,Seagate Technology.,Technology,Electronic Components,Derry,3038,New Hampshire,East,2012-03-29,1,Development - Business Logic,Development,Market Research,Emma Watson,Allen Young,67,1,0.441666667
4114,29280,2012-03-28,2012-03-01,30,4500,0.06,150,4230,Bill Black,Seagate Technology.,Technology,Electronic Components,Waterville,4901,Maine,East,2012-03-29,1,Consulting - Business Model,Consulting,Python,Elizabeth Carter,Allen Young,52,1,0.653333333
4825,34279,2012-03-28,2012-03-01,3,375,0.1,125,337.5,Joni Fritzler,PACCAR Inc.,Capital Goods,Auto Manufacturing,Tracy,95376,California,West,2012-03-30,2,Training - Javascript,Training,Java,Mason Gibson,Bob Turner,71,1,0.432
5126,36512,2012-03-28,2012-03-01,30,3750,0.04,125,3600,Sean Witt,"Twenty-First Century Fox, Inc.",Consumer Services,Television Services,Homestead,33030,Florida,South,2012-03-29,1,Training - Development,Training,Big Data,William Bufont,Frank Mitchell,62,1,0.504
5127,36512,2012-03-28,2012-03-01,3,375,0.06,125,352.5,Sean Witt,"Twenty-First Century Fox, Inc.",Consumer Services,Television Services,Homestead,33030,Florida,South,2012-03-31,3,Training - SQL,Training,Market Research,Ava Wilson,Frank Mitchell,67,1,0.464
5725,40611,2012-03-28,2012-03-01,12,1320,0.02,110,1293.6,Darrin Castell,Texas Instruments Incorporated,Technology,Semiconductors,Henderson,42420,Kentucky,South,2012-03-30,2,Development - Python,Development,PHP,Alexander Edison,Frank Mitchell,70,1,0.363636364
5726,40611,2012-03-28,2012-03-01,43,6450,0,150,6450,Darrin Castell,Texas Instruments Incorporated,Technology,Semiconductors,Henderson,42420,Kentucky,South,2012-03-30,2,Consulting - Market Research,Consulting,Python,Emma Watson,Frank Mitchell,67,1,0.553333333
1467,10567,2012-03-29,2012-03-01,10,1250,0.09,125,1137.5,Susan Bickford,Sirius XM Holdings Inc.,Consumer Services,Broadcasting,New Orleans,70117,Louisiana,South,2012-03-30,1,Training - Javascript,Training,Python,Elizabeth Carter,Frank Mitchell,52,1,0.584
2112,15104,2012-03-29,2012-03-01,23,3680,0.09,160,3348.8,Resi Gonzalez,Symantec Corporation,Technology,Computer Software: Prepackaged Software,Caldwell,83605,Idaho,West,2012-04-01,3,Development - Java,Development,SQL,Jacob Manziel,Bob Turner,57,1,0.64375
4198,29831,2012-03-29,2012-03-01,29,4930,0,170,4930,Sara Fair,Electronic Arts Inc.,Technology,Computer Software: Prepackaged Software,El Dorado Hills,95630,California,West,2012-03-30,1,Development - .Net,Development,Development,Ava Wilson,Bob Turner,67,1,0.605882353
4590,32642,2012-03-29,2012-03-01,50,7500,0.02,150,7350,Darren Perrino,Seagate Technology.,Technology,Electronic Components,Austin,78745,Texas,Central,2012-03-31,2,Consulting - Business Model,Consulting,Java,William Bufont,Josh Martinez,62,1,0.586666667
6575,46787,2012-03-29,2012-03-01,28,3080,0.1,110,2772,Caroline Hernandez,"Cisco Systems, Inc.",Technology,Computer Communications Equipment,Yonkers,10701,New York,East,2012-03-31,2,Development - Python,Development,SQL,Madison Hill,Allen Young,58,1,0.472727273
6576,46787,2012-03-29,2012-03-01,32,3840,0.07,120,3571.2,Caroline Hernandez,"Cisco Systems, Inc.",Technology,Computer Communications Equipment,Yonkers,10701,New York,East,2012-03-31,2,Development - Business Logic,Development,Business Logic,Michael Alister,Allen Young,68,1,0.433333333
1549,11173,2012-03-30,2012-03-01,37,5550,0.08,150,5106,Janet Good,"Discovery Communications, Inc.",Consumer Services,Television Services,East Cleveland,44112,Ohio,East,2012-04-01,2,Consulting - Business Model,Consulting,Business Model,Mia Moore,Allen Young,51,1,0.66
2192,15782,2012-03-30,2012-03-01,35,4375,0.1,125,3937.5,Jim Smith,KLA-Tencor Corporation,Capital Goods,Electronic Components,Cottage Lake,98072,Washington,West,2012-04-01,2,Training - Javascript,Training,Python,Ava Wilson,Bob Turner,67,1,0.464
2903,20964,2012-03-30,2012-03-01,11,1650,0.04,150,1584,Patrick Garza,Intuit Inc.,Technology,Computer Software: Prepackaged Software,Mobile,36608,Alabama,South,2012-04-01,2,Consulting - Market Research,Consulting,Java,Ethan Bird,Frank Mitchell,60,1,0.6
5216,37124,2012-03-30,2012-03-01,33,4950,0.1,150,4455,Julie Grinstein,"Staples, Inc.",Consumer Services,Other Specialty Stores,Dunedin,34698,Florida,South,2012-04-01,2,Consulting - Compensation,Consulting,.Net,Elizabeth Carter,Frank Mitchell,52,1,0.653333333
5335,37895,2012-03-30,2012-03-01,14,1540,0.1,110,1386,Barry Williamson,Microsoft Corporation,Technology,Computer Software: Prepackaged Software,Pikesville,21208,Maryland,East,2012-04-02,3,Development - Python,Development,Java,Liam Franklin,Allen Young,52,1,0.527272727
6922,49351,2012-03-30,2012-03-01,27,3240,0.06,120,3045.6,Michelle Foster,"Analog Devices, Inc.",Technology,Semiconductors,Richmond,40475,Kentucky,South,2012-04-03,4,Development - Business Logic,Development,Business Logic,Jacob Manziel,Frank Mitchell,57,1,0.525
7717,55299,2012-03-30,2012-03-01,20,2800,0.09,140,2548,Quincy Patterson,"Ross Stores, Inc.",Consumer Services,Clothing/Shoe/Accessory Stores,Casas Adobes,85704,Arizona,West,2012-03-30,0,Development - Database,Development,Business Logic,Jacob Manziel,Bob Turner,57,1,0.592857143
4041,28835,2012-03-31,2012-03-01,1,200,0.08,200,184,Phillip West,Liberty Interactive Corporation,Consumer Services,Catalog/Specialty Distribution,Plainview,11803,New York,East,2012-04-02,2,Development - Big Data,Development,.Net,Daniel Tusk,Allen Young,45,1,0.775
4678,33284,2012-03-31,2012-03-01,21,2625,0.01,125,2598.75,Lela Demir,"Citrix Systems, Inc.",Technology,Computer Software: Prepackaged Software,Sterling Heights,48310,Michigan,Central,2012-04-02,2,Training - SQL,Training,Tableau,Elizabeth Carter,Josh Martinez,52,1,0.584
5755,40839,2012-03-31,2012-03-01,23,3450,0.04,150,3312,Guy Shifley,"Wynn Resorts, Limited",Consumer Services,Hotels/Resorts,Euclid,44117,Ohio,East,2012-04-01,1,Consulting - Strategy,Consulting,Market Research,William Bufont,Allen Young,62,1,0.586666667
7144,50978,2012-03-31,2012-03-01,4,800,0.05,200,760,Cindy Savely,Linear Technology Corporation,Technology,Semiconductors,Prescott Valley,86314,Arizona,West,2012-04-02,2,Development - Big Data,Development,SQL,Noah Smith,Bob Turner,59,1,0.705
1170,8546,2012-04-01,2012-04-01,4,600,0.03,150,582,Nora Stevenson,"Gilead Sciences, Inc.",Health Care,Biotechnology: Biological Products (No Diagnostic Substances),Roanoke,24017,Virginia,South,2012-04-03,2,Consulting - Business Model,Consulting,Big Data,Emily Taylor,Frank Mitchell,62,1,0.586666667
2504,18208,2012-04-01,2012-04-01,34,3740,0.06,110,3515.6,Roy Smith,Bed Bath & Beyond Inc.,Consumer Services,Home Furnishings,Collierville,38017,Tennessee,South,2012-04-03,2,Development - PHP,Development,Java,Emily Taylor,Frank Mitchell,62,1,0.436363636
2505,18208,2012-04-01,2012-04-01,36,4320,0.08,120,3974.4,Roy Smith,Bed Bath & Beyond Inc.,Consumer Services,Home Furnishings,Collierville,38017,Tennessee,South,2012-04-03,2,Development - Business Logic,Development,Business Model,Emma Watson,Frank Mitchell,67,1,0.441666667
2994,21604,2012-04-01,2012-04-01,6,960,0.02,160,940.8,Magdelene Brockman,"Kraft Foods Group, Inc.",Consumer Non-Durables,Packaged Foods,Haltom City,76117,Texas,Central,2012-04-03,2,Development - Java,Development,SQL,Jacob Manziel,Josh Martinez,57,1,0.64375
6612,47041,2012-04-01,2012-04-01,35,4200,0.08,120,3864,Cynthia Kirkland,PACCAR Inc.,Capital Goods,Auto Manufacturing,Allen,75002,Texas,Central,2012-04-03,2,Development - Business Logic,Development,Strategy,Alexander Edison,Josh Martinez,70,1,0.416666667
4925,35045,2012-04-02,2012-04-01,44,8800,0.1,200,7920,Darrin Cousins,Tractor Supply Company,Consumer Services,RETAIL: Building Materials,Belle Glade,33430,Florida,South,2012-04-04,2,Development - Big Data,Development,Java,Ethan Bird,Frank Mitchell,60,1,0.7
1903,13633,2012-04-03,2012-04-01,18,2250,0.09,125,2047.5,Alan Daly,Avago Technologies Limited,Technology,Semiconductors,Port Arthur,77642,Texas,Central,2012-04-04,1,Training - Development,Training,Java,Madison Hill,Josh Martinez,58,1,0.536
1904,13633,2012-04-03,2012-04-01,39,7800,0.02,200,7644,Alan Daly,Avago Technologies Limited,Technology,Semiconductors,Port Arthur,77642,Texas,Central,2012-04-04,1,Development - Big Data,Development,PHP,Daniel Tusk,Josh Martinez,45,1,0.775
4720,33605,2012-04-03,2012-04-01,42,6720,0.04,160,6451.2,John Ashbrook,"Micron Technology, Inc.",Technology,Semiconductors,Jonesboro,72401,Arkansas,South,2012-04-05,2,Development - Java,Development,Java,Sophia Dixon,Frank Mitchell,71,1,0.55625
7371,52518,2012-04-03,2012-04-01,8,1200,0.08,150,1104,Roy Schnelling,Biogen Idec Inc.,Health Care,Biotechnology: Biological Products (No Diagnostic Substances),Edmonds,98026,Washington,West,2012-04-04,1,Consulting - Business Model,Consulting,Business Logic,Liam Franklin,Bob Turner,52,1,0.653333333
8111,57894,2012-04-03,2012-04-01,47,7050,0.09,150,6415.5,Jennifer Haines,"Twenty-First Century Fox, Inc.",Consumer Services,Television Services,Portsmouth,3801,New Hampshire,East,2012-04-05,2,Consulting - Strategy,Consulting,Java,Alexander Edison,Allen Young,70,1,0.533333333
28,194,2012-04-04,2012-04-01,49,6125,0.1,125,5512.5,Maria Ferguson,Liberty Media Corporation,Consumer Services,Broadcasting,West Linn,97068,Oregon,West,2012-04-06,2,Training - SQL,Training,SQL,Olivia Sullivan,Bob Turner,53,1,0.576
29,194,2012-04-04,2012-04-01,6,840,0.04,140,806.4,Maria Ferguson,Liberty Media Corporation,Consumer Services,Broadcasting,West Linn,97068,Oregon,West,2012-04-06,2,Development - Front End Web,Development,Front End Web,Ava Wilson,Bob Turner,67,1,0.521428571
1021,7458,2012-04-04,2012-04-01,16,2560,0.05,160,2432,Karen Jacobs,VimpelCom Ltd.,Public Utilities,Telecommunications Equipment,Andover,1810,MA,East,2012-04-06,2,Development - Java,Development,.Net,Isabella Douglas,Allen Young,75,1,0.53125
1022,7458,2012-04-04,2012-04-01,46,6900,0.01,150,6831,Karen Jacobs,VimpelCom Ltd.,Public Utilities,Telecommunications Equipment,Easton,2334,MA,East,2012-04-05,1,Consulting - Business Model,Consulting,Business Model,Abigail Young,Allen Young,50,1,0.666666667
1023,7458,2012-04-04,2012-04-01,9,1350,0.06,150,1269,Karen Jacobs,VimpelCom Ltd.,Public Utilities,Telecommunications Equipment,San Francisco,94110,California,West,2012-04-06,2,Consulting - Business Model,Consulting,Market Research,William Bufont,Bob Turner,62,1,0.586666667
2126,15142,2012-04-04,2012-04-01,21,3360,0.07,160,3124.8,Meg Norvell,"TripAdvisor, Inc.",Technology,"Computer Software: Programming, Data Processing",Kansas City,64130,MO,Central,2012-04-06,2,Development - Java,Development,Python,Jacob Manziel,Josh Martinez,57,1,0.64375
1088,8005,2012-04-05,2012-04-01,24,3840,0.1,160,3456,Craig Bolton,"Netflix, Inc.",Consumer Services,Consumer Electronics/Video Chains,Roy,84067,Utah,West,2012-04-07,2,Development - Java,Development,Java,Daniel Tusk,Bob Turner,45,1,0.71875
2476,17986,2012-04-05,2012-04-01,43,6880,0.05,160,6536,George Barnes,Sirius XM Holdings Inc.,Consumer Services,Broadcasting,Lubbock,79424,Texas,Central,2012-04-07,2,Development - Java,Development,Database,Michael Alister,Josh Martinez,68,1,0.575
3042,21856,2012-04-05,2012-04-01,47,9400,0.05,200,8930,Sonia Kane,Marriott International,Consumer Services,Hotels/Resorts,Kansas City,66104,Kansas,Central,2012-04-07,2,Development - Scala,Development,Python,Madison Hill,Josh Martinez,58,1,0.71
3043,21856,2012-04-05,2012-04-01,26,3640,0.08,140,3348.8,Sonia Kane,Marriott International,Consumer Services,Hotels/Resorts,Kansas City,66104,Kansas,Central,2012-04-05,0,Development - Front End Web,Development,Development,Alexander Edison,Josh Martinez,70,1,0.5
4048,28868,2012-04-05,2012-04-01,30,3300,0.05,110,3135,Anna Hwang,"Facebook, Inc.",Technology,"Computer Software: Programming, Data Processing",Overland Park,66212,Kansas,Central,2012-04-06,1,Development - Python,Development,PHP,Olivia Sullivan,Josh Martinez,53,1,0.518181818
4147,29411,2012-04-06,2012-04-01,29,4930,0.07,170,4584.9,Naresj Arnett,Check Point Software Technologies Ltd.,Technology,Computer Software: Prepackaged Software,Keller,76248,Texas,Central,2012-04-07,1,Development - .Net,Development,Market Research,Jayden Hamilton,Josh Martinez,71,1,0.582352941
4148,29411,2012-04-06,2012-04-01,33,3630,0.02,110,3557.4,Naresj Arnett,Check Point Software Technologies Ltd.,Technology,Computer Software: Prepackaged Software,Keller,76248,Texas,Central,2012-04-07,1,Development - PHP,Development,Tableau,Alexander Edison,Josh Martinez,70,1,0.363636364
4149,29411,2012-04-06,2012-04-01,38,5700,0.02,150,5586,Naresj Arnett,Check Point Software Technologies Ltd.,Technology,Computer Software: Prepackaged Software,Keller,76248,Texas,Central,2012-04-06,0,Consulting - Strategy,Consulting,.Net,Daniel Tusk,Josh Martinez,45,1,0.7
4150,29411,2012-04-06,2012-04-01,45,6750,0.04,150,6480,Naresj Arnett,Check Point Software Technologies Ltd.,Technology,Computer Software: Prepackaged Software,Keller,76248,Texas,Central,2012-04-06,0,Consulting - Strategy,Consulting,Tableau,Mason Gibson,Josh Martinez,71,1,0.526666667
5526,39143,2012-04-06,2012-04-01,46,5750,0.05,125,5462.5,Richard Koutras,Texas Instruments Incorporated,Technology,Semiconductors,Marrero,70072,Louisiana,South,2012-04-06,0,Training - Tableau,Training,.Net,Liam Franklin,Frank Mitchell,52,1,0.584
677,4738,2012-04-07,2012-04-01,2,280,0.02,140,274.4,David Glassco,"Whole Foods Market, Inc.",Consumer Services,Food Chains,Saratoga,95070,California,West,2012-04-08,1,Development - Database,Development,Front End Web,Liam Franklin,Bob Turner,52,1,0.628571429
3606,25793,2012-04-07,2012-04-01,27,4050,0.04,150,3888,James Derr,Comcast Corporation,Consumer Services,Television Services,Arlington,22204,Virginia,South,2012-04-09,2,Consulting - Market Research,Consulting,Market Research,Ava Wilson,Frank Mitchell,67,1,0.553333333
6125,43364,2012-04-07,2012-04-01,21,2310,0.04,110,2217.6,Susan Harms,SanDisk Corporation,Technology,Electronic Components,Moline,61265,Illinois,Central,2012-04-10,3,Development - PHP,Development,Java,William Bufont,Josh Martinez,62,1,0.436363636
6422,45635,2012-04-07,2012-04-01,50,7500,0.1,150,6750,Denny Willingham,Bed Bath & Beyond Inc.,Consumer Services,Home Furnishings,Bethel Park,15102,Pennsylvania,East,2012-04-16,9,Consulting - Business Model,Consulting,Scala,Michael Alister,Allen Young,68,1,0.546666667
2995,21605,2012-04-08,2012-04-01,32,4000,0.08,125,3680,Brian Butterfield,"American Airlines Group, Inc.",Transportation,Air Freight/Delivery Services,Morristown,37814,Tennessee,South,2012-04-10,2,Training - Development,Training,Big Data,William Bufont,Frank Mitchell,62,1,0.504
2996,21605,2012-04-08,2012-04-01,46,5750,0.1,125,5175,Brian Butterfield,"American Airlines Group, Inc.",Transportation,Air Freight/Delivery Services,Murfreesboro,37130,Tennessee,South,2012-04-10,2,Training - SQL,Training,Market Research,Olivia Sullivan,Frank Mitchell,53,1,0.576
7600,54370,2012-04-08,2012-04-01,49,7350,0,150,7350,Carol Knutson,Comcast Corporation,Consumer Services,Television Services,Reisterstown,21136,Maryland,East,2012-04-08,0,Consulting - Business Model,Consulting,Market Research,Ava Wilson,Allen Young,67,1,0.553333333
2134,15236,2012-04-09,2012-04-01,33,5280,0.06,160,4963.2,Lena Luxemburg,"Discovery Communications, Inc.",Consumer Services,Television Services,Norristown,19401,Pennsylvania,East,2012-04-10,1,Development - Java,Development,Business Logic,Isabella Douglas,Allen Young,75,1,0.53125
2135,15236,2012-04-09,2012-04-01,30,3750,0.01,125,3712.5,Lena Luxemburg,"Discovery Communications, Inc.",Consumer Services,Television Services,Penn Hills,15235,Pennsylvania,East,2012-04-11,2,Training - SQL,Training,Market Research,Abigail Young,Allen Young,50,1,0.6
2178,15687,2012-04-09,2012-04-01,48,6000,0.08,125,5520,Benjamin Schmidt,"Ross Stores, Inc.",Consumer Services,Clothing/Shoe/Accessory Stores,Warwick,2886,Rhode Island,East,2012-04-12,3,Training - Tableau,Training,Java,Daniel Tusk,Allen Young,45,1,0.64
2246,16193,2012-04-09,2012-04-01,8,1600,0,200,1600,Frank Stugart,NVIDIA Corporation,Technology,Semiconductors,Chicago,60623,Illinois,Central,2012-04-11,2,Development - Big Data,Development,Python,Isabella Douglas,Josh Martinez,75,1,0.625
2247,16193,2012-04-09,2012-04-01,29,4350,0.07,150,4045.5,Frank Stugart,NVIDIA Corporation,Technology,Semiconductors,Chicago,60623,Illinois,Central,2012-04-11,2,Consulting - Market Research,Consulting,Business Logic,Isabella Douglas,Josh Martinez,75,1,0.5
5072,36132,2012-04-09,2012-04-01,3,375,0.03,125,363.75,Hallie Fritzler,Yahoo! Inc.,Technology,EDP Services,Erie,16509,Pennsylvania,East,2012-04-14,5,Training - Javascript,Training,Market Research,Elizabeth Carter,Allen Young,52,1,0.584
6268,44386,2012-04-09,2012-04-01,27,4320,0.1,160,3888,Chris Latchford,"Fiserv, Inc.",Technology,EDP Services,Spring,77373,Texas,Central,2012-04-11,2,Development - Java,Development,Python,Daniel Tusk,Josh Martinez,45,1,0.71875
6269,44386,2012-04-09,2012-04-01,43,6450,0.01,150,6385.5,Chris Latchford,"Fiserv, Inc.",Technology,EDP Services,Spring,77373,Texas,Central,2012-04-11,2,Consulting - Business Model,Consulting,Python,Emily Taylor,Josh Martinez,62,1,0.586666667
6551,46566,2012-04-09,2012-04-01,49,7350,0.07,150,6835.5,Patrick Ellison,"Kraft Foods Group, Inc.",Consumer Non-Durables,Packaged Foods,Menomonee Falls,53051,Wisconsin,Central,2012-04-10,1,Consulting - Business Model,Consulting,Java,Jayden Hamilton,Josh Martinez,71,1,0.526666667
6781,48293,2012-04-09,2012-04-01,47,5170,0.03,110,5014.9,Victoria Schild,Electronic Arts Inc.,Technology,Computer Software: Prepackaged Software,Camarillo,93010,California,West,2012-04-10,1,Development - PHP,Development,Development,Ava Wilson,Bob Turner,67,1,0.390909091
7508,53574,2012-04-09,2012-04-01,8,1600,0.03,200,1552,Scot Moffitt,Fastenal Company,Consumer Services,RETAIL: Building Materials,Neenah,54956,Wisconsin,Central,2012-04-10,1,Development - Big Data,Development,Java,Olivia Sullivan,Josh Martinez,53,1,0.735
469,3205,2012-04-10,2012-04-01,8,1000,0.01,125,990,Alan Blumstein,"Activision Blizzard, Inc",Technology,Computer Software: Prepackaged Software,Syracuse,13210,New York,East,2012-04-10,0,Training - SQL,Training,Business Model,Isabella Douglas,Allen Young,75,1,0.4
470,3205,2012-04-10,2012-04-01,42,5250,0.04,125,5040,Alan Blumstein,"Activision Blizzard, Inc",Technology,Computer Software: Prepackaged Software,Syracuse,13210,New York,East,2012-04-14,4,Training - Javascript,Training,Big Data,Emily Taylor,Allen Young,62,1,0.504
1938,13894,2012-04-10,2012-04-01,31,3720,0.04,120,3571.2,Rose Poddar,"Amazon.com, Inc.",Consumer Services,Catalog/Specialty Distribution,Tulsa,74133,Oklahoma,Central,2012-04-11,1,Development - Business Logic,Development,SQL,Sophia Dixon,Josh Martinez,71,1,0.408333333
1939,13894,2012-04-10,2012-04-01,50,7500,0.05,150,7125,Rose Poddar,"Amazon.com, Inc.",Consumer Services,Catalog/Specialty Distribution,Tulsa,74133,Oklahoma,Central,2012-04-11,1,Consulting - Market Research,Consulting,Big Data,Emma Watson,Josh Martinez,67,1,0.553333333
3919,27939,2012-04-10,2012-04-01,8,880,0,110,880,Bruce Schmidt,"Applied Materials, Inc.",Technology,Semiconductors,Pleasant Grove,84062,Utah,West,2012-04-12,2,Development - Python,Development,Business Model,Jayden Hamilton,Bob Turner,71,1,0.354545455
2629,19044,2012-04-11,2012-04-01,32,4800,0.08,150,4416,Rob Sissman,"Xilinx, Inc.",Technology,Semiconductors,Madison Heights,48071,Michigan,Central,2012-04-13,2,Consulting - Strategy,Consulting,Java,Emma Watson,Josh Martinez,67,1,0.553333333
2630,19044,2012-04-11,2012-04-01,29,5800,0.07,200,5394,Rob Sissman,"Xilinx, Inc.",Technology,Semiconductors,Madison Heights,48071,Michigan,Central,2012-04-18,7,Development - Big Data,Development,Database,Mia Moore,Josh Martinez,51,1,0.745
6755,48128,2012-04-11,2012-04-01,5,750,0.03,150,727.5,Laurel Roberts,Costco Wholesale Corporation,Consumer Services,Department/Specialty Retail Stores,Hilton Head Island,29915,South Carolina,South,2012-04-12,1,Consulting - Compensation,Consulting,.Net,Mia Moore,Frank Mitchell,51,1,0.66
6884,49062,2012-04-11,2012-04-01,33,3960,0,120,3960,Ed Yedwab,DISH Network Corporation,Consumer Services,Television Services,Bella Vista,72714,Arkansas,South,2012-04-18,7,Development - Business Logic,Development,Strategy,Olivia Sullivan,Frank Mitchell,53,1,0.558333333
7894,56453,2012-04-11,2012-04-01,1,150,0,150,150,Dorothy Deggeller,Comcast Corporation,Consumer Services,Television Services,Springfield,62701,Illinois,Central,2012-04-12,1,Consulting - Strategy,Consulting,Tableau,Liam Franklin,Josh Martinez,52,1,0.653333333
8098,57767,2012-04-11,2012-04-01,34,5100,0.01,150,5049,Liz Greer,"Twenty-First Century Fox, Inc.",Consumer Services,Television Services,Indian Trail,28079,North Carolina,South,2012-04-13,2,Consulting - Market Research,Consulting,Front End Web,Elizabeth Carter,Frank Mitchell,52,1,0.653333333
8339,59589,2012-04-11,2012-04-01,25,5000,0.06,200,4700,Magdelene Brockman,"Kraft Foods Group, Inc.",Consumer Non-Durables,Packaged Foods,Harker Heights,76543,Texas,Central,2012-04-11,0,Development - Big Data,Development,SQL,Alexander Edison,Josh Martinez,70,1,0.65
296,2052,2012-04-12,2012-04-01,23,3680,0,160,3680,Rob MacKendrick,"American Airlines Group, Inc.",Transportation,Air Freight/Delivery Services,East Los Angeles,90022,California,West,2012-04-14,2,Development - Java,Development,Scala,Michael Alister,Bob Turner,68,1,0.575
2532,18373,2012-04-12,2012-04-01,35,5950,0.09,170,5414.5,Tracy Miller,"Charter Communications, Inc.",Consumer Services,Television Services,Secaucus,7094,New Jersey,East,2012-04-12,0,Development - .Net,Development,Big Data,Madison Hill,Allen Young,58,1,0.658823529
6416,45575,2012-04-12,2012-04-01,46,5060,0.06,110,4756.4,Eric Dilbeck,Google Inc.,Technology,"Computer Software: Programming, Data Processing",Immokalee,34142,Florida,South,2012-04-12,0,Development - PHP,Development,Python,Emma Watson,Frank Mitchell,67,1,0.390909091
7328,52225,2012-04-12,2012-04-01,10,1250,0.01,125,1237.5,Dana Castell,Sigma-Aldrich Corporation,Consumer Durables,Specialty Chemicals,Shoreview,55126,Minnesota,Central,2012-04-13,1,Training - SQL,Training,Javascript,Ethan Bird,Josh Martinez,60,1,0.52
7329,52225,2012-04-12,2012-04-01,33,3630,0.06,110,3412.2,Dana Castell,Sigma-Aldrich Corporation,Consumer Durables,Specialty Chemicals,Shoreview,55126,Minnesota,Central,2012-04-13,1,Development - Python,Development,Database,Liam Franklin,Josh Martinez,52,1,0.527272727
7886,56418,2012-04-12,2012-04-01,47,9400,0.09,200,8554,John Conant,Mylan Inc.,Health Care,Major Pharmaceuticals,Kent,44240,Ohio,East,2012-04-13,1,Development - Big Data,Development,Scala,Emily Taylor,Allen Young,62,1,0.69
1160,8450,2012-04-13,2012-04-01,24,4080,0.02,170,3998.4,Eva O'Carroll,Lam Research Corporation,Technology,Industrial Machinery/Components,Danville,40422,Kentucky,South,2012-04-15,2,Development - .Net,Development,.Net,Olivia Sullivan,Frank Mitchell,53,1,0.688235294
1161,8450,2012-04-13,2012-04-01,22,3520,0.09,160,3203.2,Eva O'Carroll,Lam Research Corporation,Technology,Industrial Machinery/Components,Danville,40422,Kentucky,South,2012-04-14,1,Development - Java,Development,SQL,Olivia Sullivan,Frank Mitchell,53,1,0.66875
2441,17702,2012-04-13,2012-04-01,48,8160,0.09,170,7425.6,Mark Nockton,Monster Beverage Corporation,Consumer Non-Durables,Beverages (Production/Distribution),Sharon,16146,Pennsylvania,East,2012-04-14,1,Development - .Net,Development,SQL,Mia Moore,Allen Young,51,1,0.7
2442,17702,2012-04-13,2012-04-01,9,1350,0.02,150,1323,Mark Nockton,Monster Beverage Corporation,Consumer Non-Durables,Beverages (Production/Distribution),Troy,48098,Michigan,Central,2012-04-13,0,Consulting - Business Model,Consulting,Business Model,Ava Wilson,Josh Martinez,67,1,0.553333333
3363,24066,2012-04-13,2012-04-01,30,3750,0.07,125,3487.5,Gary Shillingsburg,Liberty Interactive Corporation,Consumer Services,Catalog/Specialty Distribution,Brandon,33511,Florida,South,2012-04-15,2,Training - Tableau,Training,Big Data,Ethan Bird,Frank Mitchell,60,1,0.52
5634,39876,2012-04-13,2012-04-01,43,6880,0.08,160,6329.6,Jill Caudle,Intuit Inc.,Technology,Computer Software: Prepackaged Software,Delray Beach,33445,Florida,South,2012-04-15,2,Development - Java,Development,Java,Jayden Hamilton,Frank Mitchell,71,1,0.55625
5635,39876,2012-04-13,2012-04-01,46,7360,0.05,160,6992,Jill Caudle,Intuit Inc.,Technology,Computer Software: Prepackaged Software,Delray Beach,33445,Florida,South,2012-04-15,2,Development - Java,Development,.Net,Alexander Edison,Frank Mitchell,70,1,0.5625
5636,39876,2012-04-13,2012-04-01,41,5125,0.04,125,4920,Jill Caudle,Intuit Inc.,Technology,Computer Software: Prepackaged Software,Delray Beach,33445,Florida,South,2012-04-15,2,Training - Javascript,Training,SQL,Emma Watson,Frank Mitchell,67,1,0.464
6274,44422,2012-04-13,2012-04-01,1,170,0,170,170,Thais Roper,VimpelCom Ltd.,Public Utilities,Telecommunications Equipment,Port Charlotte,33952,Florida,South,2012-04-15,2,Development - .Net,Development,Java,Isabella Douglas,Frank Mitchell,75,1,0.558823529
6275,44422,2012-04-13,2012-04-01,36,5760,0.08,160,5299.2,Thais Roper,VimpelCom Ltd.,Public Utilities,Telecommunications Equipment,Port Charlotte,33952,Florida,South,2012-04-15,2,Development - Java,Development,PHP,Emily Taylor,Frank Mitchell,62,1,0.6125
6276,44422,2012-04-13,2012-04-01,11,1650,0.04,150,1584,Thais Roper,VimpelCom Ltd.,Public Utilities,Telecommunications Equipment,Port Charlotte,33952,Florida,South,2012-04-15,2,Consulting - Market Research,Consulting,Strategy,Mia Moore,Frank Mitchell,51,1,0.66
7174,51202,2012-04-13,2012-04-01,4,440,0.06,110,413.6,Jim Nazzal,"Intuitive Surgical, Inc.",Health Care,Industrial Specialties,Charlottesville,22901,Virginia,South,2012-04-15,2,Development - Python,Development,Market Research,Ethan Bird,Frank Mitchell,60,1,0.454545455
7175,51202,2012-04-13,2012-04-01,34,3740,0.1,110,3366,Jim Nazzal,"Intuitive Surgical, Inc.",Health Care,Industrial Specialties,Charlottesville,22901,Virginia,South,2012-04-14,1,Development - Python,Development,Java,Ethan Bird,Frank Mitchell,60,1,0.454545455
7317,52164,2012-04-13,2012-04-01,30,4500,0,150,4500,John Conant,Mylan Inc.,Health Care,Major Pharmaceuticals,Kent,44240,Ohio,East,2012-04-15,2,Consulting - Market Research,Consulting,SQL,Emma Watson,Allen Young,67,1,0.553333333
1178,8609,2012-04-14,2012-04-01,4,600,0.04,150,576,Roy Schnelling,Biogen Idec Inc.,Health Care,Biotechnology: Biological Products (No Diagnostic Substances),Bremerton,98310,Washington,West,2012-04-15,1,Consulting - Market Research,Consulting,Python,Noah Smith,Bob Turner,59,1,0.606666667
5387,38310,2012-04-14,2012-04-01,4,680,0.08,170,625.6,Jack Cacioppo,"Charter Communications, Inc.",Consumer Services,Television Services,Richmond,47374,Indiana,Central,2012-04-17,3,Development - .Net,Development,SQL,Isabella Douglas,Josh Martinez,75,1,0.558823529
6074,43043,2012-04-14,2012-04-01,4,680,0.07,170,632.4,Adam Phonely,"Automatic Data Processing, Inc.",Technology,EDP Services,Lancaster,93534,California,West,2012-04-16,2,Development - .Net,Development,Tableau,William Bufont,Bob Turner,62,1,0.635294118
7296,52007,2012-04-14,2012-04-01,25,5000,0.1,200,4500,Alejandro Olsen,Broadcom Corporation,Technology,Semiconductors,Cincinnati,45231,Ohio,East,2012-04-14,0,Development - Scala,Development,Business Model,Michael Alister,Allen Young,68,1,0.66
7297,52007,2012-04-14,2012-04-01,19,2375,0.08,125,2185,Alejandro Olsen,Broadcom Corporation,Technology,Semiconductors,Cleveland,44105,Ohio,East,2012-04-15,1,Training - Javascript,Training,Database,Ethan Bird,Allen Young,60,1,0.52
7854,56161,2012-04-14,2012-04-01,38,5700,0.02,150,5586,Ed Yedwab,DISH Network Corporation,Consumer Services,Television Services,Bella Vista,72714,Arkansas,South,2012-04-16,2,Consulting - Business Model,Consulting,Strategy,Abigail Young,Frank Mitchell,50,1,0.666666667
8382,59905,2012-04-14,2012-04-01,19,2850,0.09,150,2593.5,Daniel Price,SanDisk Corporation,Technology,Electronic Components,Prairie Village,66202,Kansas,Central,2012-04-16,2,Consulting - Business Model,Consulting,Big Data,Emma Watson,Josh Martinez,67,1,0.553333333
8383,59905,2012-04-14,2012-04-01,6,660,0,110,660,Daniel Price,SanDisk Corporation,Technology,Electronic Components,Prairie Village,66202,Kansas,Central,2012-04-16,2,Development - Python,Development,Business Model,Ethan Bird,Josh Martinez,60,1,0.454545455
8384,59905,2012-04-14,2012-04-01,5,600,0.01,120,594,Daniel Price,SanDisk Corporation,Technology,Electronic Components,Prairie Village,66202,Kansas,Central,2012-04-15,1,Development - Business Logic,Development,Python,Emily Taylor,Josh Martinez,62,1,0.483333333
203,1344,2012-04-15,2012-04-01,15,2250,0.06,150,2115,Jim French,Liberty Global plc,Consumer Services,Television Services,Elgin,60123,Illinois,Central,2012-04-22,7,Consulting - Market Research,Consulting,Python,Jacob Manziel,Josh Martinez,57,1,0.62
204,1344,2012-04-15,2012-04-01,18,2700,0.01,150,2673,Jim French,Liberty Global plc,Consumer Services,Television Services,Elgin,60123,Illinois,Central,2012-04-19,4,Consulting - Market Research,Consulting,Big Data,Alexander Edison,Josh Martinez,70,1,0.533333333
264,1826,2012-04-15,2012-04-01,5,550,0.09,110,500.5,Susan Harms,SanDisk Corporation,Technology,Electronic Components,Mandan,58554,North Dakota,Central,2012-04-16,1,Development - Python,Development,Development,Abigail Young,Josh Martinez,50,1,0.545454545
2859,20615,2012-04-15,2012-04-01,29,3190,0.02,110,3126.2,Benjamin Reiten,Liberty Interactive Corporation,Consumer Services,Catalog/Specialty Distribution,Goodyear,85338,Arizona,West,2012-04-16,1,Development - Python,Development,Strategy,William Bufont,Bob Turner,62,1,0.436363636
4051,28871,2012-04-15,2012-04-01,10,1500,0.08,150,1380,Claudia Barton,Liberty Media Corporation,Consumer Services,Broadcasting,Quincy,62301,Illinois,Central,2012-04-15,0,Consulting - Business Model,Consulting,Development,Ethan Bird,Josh Martinez,60,1,0.6
6226,44071,2012-04-15,2012-04-01,19,3040,0.08,160,2796.8,Frank Stugart,NVIDIA Corporation,Technology,Semiconductors,Chicago,60623,Illinois,Central,2012-04-16,1,Development - Java,Development,Business Logic,Alexander Edison,Josh Martinez,70,1,0.5625
6227,44071,2012-04-15,2012-04-01,20,3000,0,150,3000,Frank Stugart,NVIDIA Corporation,Technology,Semiconductors,Chicago,60623,Illinois,Central,2012-04-16,1,Consulting - Market Research,Consulting,Development,Ethan Bird,Josh Martinez,60,1,0.6
7577,54183,2012-04-15,2012-04-01,32,4800,0.02,150,4704,Mike Pak,"Alexion Pharmaceuticals, Inc.",Health Care,Major Pharmaceuticals,Huntsville,77340,Texas,Central,2012-04-17,2,Consulting - Business Model,Consulting,Market Research,Olivia Sullivan,Josh Martinez,53,1,0.646666667
7578,54183,2012-04-15,2012-04-01,9,1080,0.02,120,1058.4,Mike Pak,"Alexion Pharmaceuticals, Inc.",Health Care,Major Pharmaceuticals,Huntsville,77340,Texas,Central,2012-04-16,1,Development - Business Logic,Development,Business Model,Emma Watson,Josh Martinez,67,1,0.441666667
711,5028,2012-04-16,2012-04-01,10,1250,0.06,125,1175,Art Stewart,Liberty Global plc,Consumer Services,Television Services,Littleton,80122,Colorado,West,2012-04-18,2,Training - SQL,Training,Business Model,Liam Franklin,Bob Turner,52,1,0.584
3007,21638,2012-04-16,2012-04-01,13,1430,0.03,110,1387.1,Suzanne Molinari,"Staples, Inc.",Consumer Services,Other Specialty Stores,Shreveport,71109,Louisiana,South,2012-04-17,1,Development - Python,Development,SQL,Ava Wilson,Frank Mitchell,67,1,0.390909091
7146,50982,2012-04-16,2012-04-01,23,4600,0.05,200,4370,Clay Kennedy,Liberty Interactive Corporation,Consumer Services,Catalog/Specialty Distribution,Brooklyn,11226,New York,East,2012-04-17,1,Development - Scala,Development,Java,Abigail Young,Allen Young,50,1,0.75
2934,21253,2012-04-17,2012-04-01,5,550,0.04,110,528,Jim Smith,KLA-Tencor Corporation,Capital Goods,Electronic Components,Cottage Lake,98072,Washington,West,2012-04-18,1,Development - PHP,Development,Java,Daniel Tusk,Bob Turner,45,1,0.590909091
3161,22688,2012-04-17,2012-04-01,40,6000,0.1,150,5400,Maureen Weiss,SBA Communications Corporation,Consumer Services,Telecommunications Equipment,Plum,15239,Pennsylvania,East,2012-04-18,1,Consulting - Market Research,Consulting,Development,Mason Gibson,Allen Young,71,1,0.526666667
3374,24098,2012-04-17,2012-04-01,42,6720,0.05,160,6384,Erin Eichhorn,"Kraft Foods Group, Inc.",Consumer Non-Durables,Packaged Foods,Auburn,36830,Alabama,South,2012-04-18,1,Development - Java,Development,Python,Madison Hill,Frank Mitchell,58,1,0.6375
3375,24098,2012-04-17,2012-04-01,10,1100,0.05,110,1045,Erin Eichhorn,"Kraft Foods Group, Inc.",Consumer Non-Durables,Packaged Foods,Auburn,36830,Alabama,South,2012-04-19,2,Development - Python,Development,Javascript,Olivia Sullivan,Frank Mitchell,53,1,0.518181818
3376,24098,2012-04-17,2012-04-01,32,4800,0.02,150,4704,Erin Eichhorn,"Kraft Foods Group, Inc.",Consumer Non-Durables,Packaged Foods,Auburn,36830,Alabama,South,2012-04-18,1,Consulting - Market Research,Consulting,Tableau,Alexander Edison,Frank Mitchell,70,1,0.533333333
3626,25895,2012-04-17,2012-04-01,37,5920,0.09,160,5387.2,Candace Kendrick,Bed Bath & Beyond Inc.,Consumer Services,Home Furnishings,San Marcos,78666,Texas,Central,2012-04-20,3,Development - Java,Development,PHP,Liam Franklin,Josh Martinez,52,1,0.675
6843,48742,2012-04-17,2012-04-01,42,6720,0.03,160,6518.4,Roger Tom,Altera Corporation,Technology,Semiconductors,Boise,83701,Idaho,West,2012-04-19,2,Development - Java,Development,Big Data,Jacob Manziel,Bob Turner,57,1,0.64375
129,832,2012-04-18,2012-04-01,7,770,0.02,110,754.6,Alice Page,"Charter Communications, Inc.",Consumer Services,Television Services,Kearns,84118,Utah,West,2012-04-22,4,Development - Python,Development,.Net,Ethan Bird,Bob Turner,60,1,0.454545455
185,1221,2012-04-18,2012-04-01,1,160,0.06,160,150.4,Lela Demir,"Citrix Systems, Inc.",Technology,Computer Software: Prepackaged Software,Shelby,49455,Michigan,Central,2012-04-18,0,Development - Java,Development,Python,Emma Watson,Josh Martinez,67,1,0.58125
186,1221,2012-04-18,2012-04-01,11,1760,0.03,160,1707.2,Lela Demir,"Citrix Systems, Inc.",Technology,Computer Software: Prepackaged Software,Southfield,48034,Michigan,Central,2012-04-20,2,Development - Java,Development,Python,Elizabeth Carter,Josh Martinez,52,1,0.675
187,1221,2012-04-18,2012-04-01,16,2560,0.08,160,2355.2,Lela Demir,"Citrix Systems, Inc.",Technology,Computer Software: Prepackaged Software,Southfield,48034,Michigan,Central,2012-04-20,2,Development - Java,Development,Market Research,Ava Wilson,Josh Martinez,67,1,0.58125
4551,32386,2012-04-18,2012-04-01,1,150,0,150,150,Christopher Zandusky,"Henry Schein, Inc.",Health Care,Medical Specialities,Tacoma,98408,Washington,West,2012-04-20,2,Consulting - Strategy,Consulting,Java,Elizabeth Carter,Bob Turner,52,1,0.653333333
4920,35040,2012-04-18,2012-04-01,44,8800,0.03,200,8536,Jack Bradley,Comcast Corporation,Consumer Services,Television Services,Clinton,39056,Mississippi,South,2012-04-21,3,Development - Big Data,Development,Business Model,Alexander Edison,Frank Mitchell,70,1,0.65
6403,45476,2012-04-18,2012-04-01,48,8160,0.07,170,7588.8,Ashley Wiener,Lam Research Corporation,Technology,Industrial Machinery/Components,Glendale,85301,Arizona,West,2012-04-18,0,Development - .Net,Development,SQL,Emma Watson,Bob Turner,67,1,0.605882353
6379,45315,2012-04-20,2012-04-01,32,6400,0.02,200,6272,Peter Lopez,"NetApp, Inc.",Technology,Electronic Components,Bakersfield,93309,California,West,2012-04-21,1,Development - Big Data,Development,Market Research,William Bufont,Bob Turner,62,1,0.69
717,5095,2012-04-21,2012-04-01,7,1050,0.01,150,1039.5,Lauren Bern,Cognizant Technology Solutions Corporation,Technology,EDP Services,Durango,81301,Colorado,West,2012-04-22,1,Consulting - Market Research,Consulting,Market Research,Emma Watson,Bob Turner,67,1,0.553333333
832,5986,2012-04-21,2012-04-01,48,8160,0.08,170,7507.2,Filia Rittenbach,"Mondelez International, Inc.",Consumer Non-Durables,Packaged Foods,Upper Saint Clair,15241,Pennsylvania,East,2012-04-21,0,Development - .Net,Development,Python,Liam Franklin,Allen Young,52,1,0.694117647
833,5986,2012-04-21,2012-04-01,20,2500,0.05,125,2375,Filia Rittenbach,"Mondelez International, Inc.",Consumer Non-Durables,Packaged Foods,Upper Saint Clair,15241,Pennsylvania,East,2012-04-22,1,Training - Development,Training,Javascript,Olivia Sullivan,Allen Young,53,1,0.576
834,5986,2012-04-21,2012-04-01,41,6150,0.03,150,5965.5,Filia Rittenbach,"Mondelez International, Inc.",Consumer Non-Durables,Packaged Foods,Upper Saint Clair,15241,Pennsylvania,East,2012-04-22,1,Consulting - Business Model,Consulting,Market Research,Ethan Bird,Allen Young,60,1,0.6
1153,8390,2012-04-21,2012-04-01,24,3600,0.08,150,3312,Emily Kriz,"Gilead Sciences, Inc.",Health Care,Biotechnology: Biological Products (No Diagnostic Substances),Prairie Village,66202,Kansas,Central,2012-04-21,0,Consulting - Business Model,Consulting,Tableau,Ethan Bird,Josh Martinez,60,1,0.6
4933,35104,2012-04-22,2012-04-01,1,150,0.04,150,144,Bill McGarr,SanDisk Corporation,Technology,Electronic Components,Kearney,68847,Nebraska,Central,2012-04-25,3,Consulting - Business Model,Consulting,SQL,Ava Wilson,Josh Martinez,67,1,0.553333333
4934,35104,2012-04-22,2012-04-01,18,2250,0,125,2250,Bill McGarr,SanDisk Corporation,Technology,Electronic Components,Kearney,68847,Nebraska,Central,2012-04-24,2,Training - SQL,Training,Business Model,Daniel Tusk,Josh Martinez,45,1,0.64
5549,39300,2012-04-22,2012-04-01,9,1530,0.01,170,1514.7,Emily Phan,"Twenty-First Century Fox, Inc.",Consumer Services,Television Services,Scituate,2040,MA,East,2012-04-24,2,Development - .Net,Development,Java,William Bufont,Allen Young,62,1,0.635294118
8079,57638,2012-04-22,2012-04-01,35,4375,0.09,125,3981.25,Christy Blume,Intuit Inc.,Technology,Computer Software: Prepackaged Software,Bangor,4401,Maine,East,2012-04-27,5,Training - Javascript,Training,SQL,Isabella Douglas,Allen Young,75,1,0.4
8080,57638,2012-04-22,2012-04-01,49,5390,0.07,110,5012.7,Christy Blume,Intuit Inc.,Technology,Computer Software: Prepackaged Software,Manchester,6040,Connecticut,East,2012-04-24,2,Development - Python,Development,Business Logic,Mason Gibson,Allen Young,71,1,0.354545455
8081,57638,2012-04-22,2012-04-01,49,6860,0.08,140,6311.2,Christy Blume,Intuit Inc.,Technology,Computer Software: Prepackaged Software,Norwalk,6850,Connecticut,East,2012-04-24,2,Development - Front End Web,Development,Scala,Olivia Sullivan,Allen Young,53,1,0.621428571
8314,59395,2012-04-22,2012-04-01,20,2200,0.06,110,2068,Cari Murry,Broadcom Corporation,Technology,Semiconductors,Park Ridge,60068,Illinois,Central,2012-04-24,2,Development - Python,Development,Business Model,Mason Gibson,Josh Martinez,71,1,0.354545455
3095,22183,2012-04-23,2012-04-01,30,3600,0.06,120,3384,Speros Pisteka,"Mattel, Inc.",Consumer Non-Durables,Recreational Products/Toys,Paterson,7501,New Jersey,East,2012-04-24,1,Development - Business Logic,Development,Business Model,William Bufont,Allen Young,62,1,0.483333333
6427,45698,2012-04-23,2012-04-01,40,6400,0.1,160,5760,Jay Carlisle,Express Scripts Holding Company,Health Care,Medical/Nursing Services,Fairborn,45324,Ohio,East,2012-04-25,2,Development - Java,Development,Development,Mason Gibson,Allen Young,71,1,0.55625
6428,45698,2012-04-23,2012-04-01,36,3960,0.04,110,3801.6,Jay Carlisle,Express Scripts Holding Company,Health Care,Medical/Nursing Services,Fairborn,45324,Ohio,East,2012-04-26,3,Development - Python,Development,Python,Abigail Young,Allen Young,50,1,0.545454545
7268,51872,2012-04-23,2012-04-01,10,1250,0.09,125,1137.5,Shui Morse,Liberty Media Corporation,Consumer Services,Broadcasting,Kennewick,99336,Washington,West,2012-04-24,1,Training - Development,Training,Market Research,Olivia Sullivan,Bob Turner,53,1,0.576
7269,51872,2012-04-23,2012-04-01,11,1650,0,150,1650,Shui Morse,Liberty Media Corporation,Consumer Services,Broadcasting,Kennewick,99336,Washington,West,2012-04-25,2,Consulting - Market Research,Consulting,Strategy,Sophia Dixon,Bob Turner,71,1,0.526666667
7270,51872,2012-04-23,2012-04-01,37,5550,0.06,150,5217,Shui Morse,Liberty Media Corporation,Consumer Services,Broadcasting,Kent,98031,Washington,West,2012-04-26,3,Consulting - Market Research,Consulting,Big Data,Alexander Edison,Bob Turner,70,1,0.533333333
692,4805,2012-04-24,2012-04-01,7,770,0.02,110,754.6,Tony Lucas,Celgene Corporation,Health Care,Major Pharmaceuticals,Mount Vernon,98273,Washington,West,2012-04-27,3,Development - Python,Development,.Net,Jayden Hamilton,Bob Turner,71,1,0.354545455
1092,8033,2012-04-24,2012-04-01,27,4590,0.06,170,4314.6,Michelle Collister,"American Airlines Group, Inc.",Transportation,Air Freight/Delivery Services,Franklin,53132,Wisconsin,Central,2012-04-25,1,Development - .Net,Development,Python,Mia Moore,Josh Martinez,51,1,0.7
1809,12931,2012-04-24,2012-04-01,11,2200,0.02,200,2156,Doug Federle,Catamaran Corporation,Finance,Specialty Insurers,New Milford,7646,New Jersey,East,2012-04-25,1,Development - Big Data,Development,Python,Alexander Edison,Allen Young,70,1,0.65
3230,23172,2012-04-24,2012-04-01,13,1950,0.07,150,1813.5,Alex Grayson,"C.H. Robinson Worldwide, Inc.",Transportation,Oil Refining/Marketing,Mcminnville,97128,Oregon,West,2012-04-29,5,Consulting - Strategy,Consulting,Python,Ethan Bird,Bob Turner,60,1,0.6
3576,25478,2012-04-24,2012-04-01,47,7050,0.01,150,6979.5,Jim Paige,"Kraft Foods Group, Inc.",Consumer Non-Durables,Packaged Foods,Fairborn,45324,Ohio,East,2012-04-24,0,Consulting - Market Research,Consulting,PHP,Madison Hill,Allen Young,58,1,0.613333333
3577,25478,2012-04-24,2012-04-01,50,7000,0.09,140,6370,Jim Paige,"Kraft Foods Group, Inc.",Consumer Non-Durables,Packaged Foods,Fairfield,45014,Ohio,East,2012-04-26,2,Development - Database,Development,.Net,Isabella Douglas,Allen Young,75,1,0.464285714
6513,46368,2012-04-24,2012-04-01,48,5760,0,120,5760,Cynthia Prichep,QUALCOMM Incorporated,Technology,Radio And Television Broadcasting And Communications Equipment,Cherry Hill,8002,New Jersey,East,2012-04-26,2,Development - Business Logic,Development,Business Model,Mason Gibson,Allen Young,71,1,0.408333333
183,1217,2012-04-25,2012-04-01,25,3750,0.07,150,3487.5,Sung Fjeld,SBA Communications Corporation,Consumer Services,Telecommunications Equipment,Monroe,71203,Louisiana,South,2012-04-26,1,Consulting - Business Model,Consulting,Python,Emily Taylor,Frank Mitchell,62,1,0.586666667
569,3845,2012-04-25,2012-04-01,9,1530,0.09,170,1392.3,Stephanie Tate,Microsoft Corporation,Technology,Computer Software: Prepackaged Software,Kent,98031,Washington,West,2012-04-25,0,Development - .Net,Development,Business Logic,Olivia Sullivan,Bob Turner,53,1,0.688235294
570,3845,2012-04-25,2012-04-01,22,2750,0.02,125,2695,Stephanie Tate,Microsoft Corporation,Technology,Computer Software: Prepackaged Software,Kent,98031,Washington,West,2012-04-27,2,Training - SQL,Training,Python,Alexander Edison,Bob Turner,70,1,0.44
571,3845,2012-04-25,2012-04-01,15,1875,0.09,125,1706.25,Stephanie Tate,Microsoft Corporation,Technology,Computer Software: Prepackaged Software,Kent,98031,Washington,West,2012-04-26,1,Training - SQL,Training,.Net,Daniel Tusk,Bob Turner,45,1,0.64
2321,16711,2012-04-25,2012-04-01,3,420,0.1,140,378,Jeremy Carlisle,"Keurig Green Mountain, Inc.",Consumer Non-Durables,Packaged Foods,Bethpage,11714,New York,East,2012-04-27,2,Development - Database,Development,Python,Mia Moore,Allen Young,51,1,0.635714286
2987,21573,2012-04-25,2012-04-01,31,6200,0.05,200,5890,Don Shami,"C.H. Robinson Worldwide, Inc.",Transportation,Oil Refining/Marketing,Bethel Park,15102,Pennsylvania,East,2012-04-27,2,Development - Scala,Development,Java,Elizabeth Carter,Allen Young,52,1,0.74
2988,21573,2012-04-25,2012-04-01,7,875,0,125,875,Don Shami,"C.H. Robinson Worldwide, Inc.",Transportation,Oil Refining/Marketing,Bethel Park,15102,Pennsylvania,East,2012-04-27,2,Training - SQL,Training,Java,Daniel Tusk,Allen Young,45,1,0.64
2989,21573,2012-04-25,2012-04-01,3,375,0.04,125,360,Don Shami,"C.H. Robinson Worldwide, Inc.",Transportation,Oil Refining/Marketing,Bethel Park,15102,Pennsylvania,East,2012-04-27,2,Training - Javascript,Training,Big Data,Mason Gibson,Allen Young,71,1,0.432
4202,29861,2012-04-25,2012-04-01,11,2200,0.03,200,2134,Brad Jacobs,Viacom Inc.,Consumer Services,Television Services,Tinley Park,60477,Illinois,Central,2012-04-26,1,Development - Scala,Development,Java,Jacob Manziel,Josh Martinez,57,1,0.715
7432,52999,2012-04-25,2012-04-01,5,625,0.04,125,600,Eugene Farry,Liberty Media Corporation,Consumer Services,Broadcasting,Channelview,77530,Texas,Central,2012-04-27,2,Training - SQL,Training,Market Research,Olivia Sullivan,Josh Martinez,53,1,0.576
7433,52999,2012-04-25,2012-04-01,39,4290,0.05,110,4075.5,Eugene Farry,Liberty Media Corporation,Consumer Services,Broadcasting,Channelview,77530,Texas,Central,2012-04-27,2,Development - Python,Development,Business Model,Liam Franklin,Josh Martinez,52,1,0.527272727
7434,52999,2012-04-25,2012-04-01,7,770,0.1,110,693,Eugene Farry,Liberty Media Corporation,Consumer Services,Broadcasting,Channelview,77530,Texas,Central,2012-04-25,0,Development - Python,Development,SQL,Jayden Hamilton,Josh Martinez,71,1,0.354545455
4257,30310,2012-04-26,2012-04-01,21,3150,0.1,150,2835,Thomas Lomonaco,"Xilinx, Inc.",Technology,Semiconductors,Trenton,48183,Michigan,Central,2012-04-28,2,Consulting - Market Research,Consulting,Big Data,Noah Smith,Josh Martinez,59,1,0.606666667
5954,42246,2012-04-26,2012-04-01,40,6000,0.07,150,5580,Ted Yedwab,Viacom Inc.,Consumer Services,Television Services,Plano,75023,Texas,Central,2012-04-27,1,Consulting - Business Model,Consulting,Javascript,Alexander Edison,Josh Martinez,70,1,0.533333333
5955,42246,2012-04-26,2012-04-01,5,600,0.05,120,570,Ted Yedwab,Viacom Inc.,Consumer Services,Television Services,Plano,75023,Texas,Central,2012-04-28,2,Development - Business Logic,Development,Python,Mason Gibson,Josh Martinez,71,1,0.408333333
6837,48673,2012-04-26,2012-04-01,36,7200,0.03,200,6984,Penelope Pistole,Microsoft Corporation,Technology,Computer Software: Prepackaged Software,Boise,83701,Idaho,West,2012-04-27,1,Development - Big Data,Development,SQL,Mason Gibson,Bob Turner,71,1,0.645
1937,13892,2012-04-27,2012-04-01,47,7050,0,150,7050,Frank Granlund,Mylan Inc.,Health Care,Major Pharmaceuticals,Sulphur Springs,75482,Texas,Central,2012-04-28,1,Consulting - Business Model,Consulting,Business Model,Mason Gibson,Josh Martinez,71,1,0.526666667
2145,15329,2012-04-27,2012-04-01,34,5100,0.04,150,4896,Rob Cano,Yahoo! Inc.,Technology,EDP Services,Mason City,50401,Iowa,Central,2012-04-27,0,Consulting - Business Model,Consulting,SQL,Noah Smith,Josh Martinez,59,1,0.606666667
3765,26912,2012-04-27,2012-04-01,18,2700,0.07,150,2511,Noel Hamilton,"Facebook, Inc.",Technology,"Computer Software: Programming, Data Processing",Long Branch,7740,New Jersey,East,2012-05-01,4,Consulting - Market Research,Consulting,Compensation,Emma Watson,Allen Young,67,1,0.553333333
3766,26912,2012-04-27,2012-04-01,21,3150,0.08,150,2898,Noel Hamilton,"Facebook, Inc.",Technology,"Computer Software: Programming, Data Processing",Pepperell,1463,MA,East,2012-05-06,9,Consulting - Business Model,Consulting,Python,Daniel Tusk,Allen Young,45,1,0.7
4656,33159,2012-04-27,2012-04-01,3,450,0.01,150,445.5,Cindy Gastineau,Liberty Global plc,Consumer Services,Television Services,Frankfort,60423,Illinois,Central,2012-04-29,2,Consulting - Market Research,Consulting,.Net,William Bufont,Josh Martinez,62,1,0.586666667
4689,33378,2012-04-27,2012-04-01,25,2750,0.1,110,2475,Joseph Fritzler,The Priceline Group Inc.,Miscellaneous,Business Services,Creve Coeur,63141,MO,Central,2012-04-28,1,Development - PHP,Development,Python,Sophia Dixon,Josh Martinez,71,1,0.354545455
4729,33670,2012-04-27,2012-04-01,50,6000,0.03,120,5820,Mick Breyer,"Akamai Technologies, Inc.",Miscellaneous,Business Services,Fort Pierce,34982,Florida,South,2012-04-29,2,Development - Business Logic,Development,SQL,Mia Moore,Frank Mitchell,51,1,0.575
4730,33670,2012-04-27,2012-04-01,4,480,0.06,120,451.2,Mick Breyer,"Akamai Technologies, Inc.",Miscellaneous,Business Services,Fort Pierce,34982,Florida,South,2012-04-28,1,Development - Business Logic,Development,Python,Jayden Hamilton,Frank Mitchell,71,1,0.408333333
5413,38498,2012-04-27,2012-04-01,30,4500,0.07,150,4185,Grant Jackson,"Tesla Motors, Inc.",Capital Goods,Auto Manufacturing,Fairmont,26554,West Virginia,East,2012-04-29,2,Consulting - Business Model,Consulting,Scala,Isabella Douglas,Allen Young,75,1,0.5
5414,38498,2012-04-27,2012-04-01,1,120,0.02,120,117.6,Grant Jackson,"Tesla Motors, Inc.",Capital Goods,Auto Manufacturing,Fairmont,26554,West Virginia,East,2012-04-30,3,Development - Business Logic,Development,SQL,Ava Wilson,Allen Young,67,1,0.441666667
6511,46337,2012-04-27,2012-04-01,34,4080,0.06,120,3835.2,Liz Vernon,Google Inc.,Technology,"Computer Software: Programming, Data Processing",Ithaca,14853,New York,East,2012-05-02,5,Development - Business Logic,Development,SQL,Daniel Tusk,Allen Young,45,1,0.625
805,5767,2012-04-28,2012-04-01,36,5760,0.03,160,5587.2,Jessica Thornton,Garmin Ltd.,Capital Goods,Industrial Machinery/Components,Laramie,82070,Wyoming,West,2012-04-29,1,Development - Java,Development,SQL,Emily Taylor,Bob Turner,62,1,0.6125
806,5767,2012-04-28,2012-04-01,31,4650,0.08,150,4278,Jessica Thornton,Garmin Ltd.,Capital Goods,Industrial Machinery/Components,Laramie,82070,Wyoming,West,2012-04-30,2,Consulting - Business Model,Consulting,Market Research,Olivia Sullivan,Bob Turner,53,1,0.646666667
3045,21860,2012-04-28,2012-04-01,9,1125,0.06,125,1057.5,Larry Williams,"C.H. Robinson Worldwide, Inc.",Transportation,Oil Refining/Marketing,Greer,29651,South Carolina,South,2012-04-29,1,Training - SQL,Training,Business Logic,Elizabeth Carter,Frank Mitchell,52,1,0.584
3136,22497,2012-04-28,2012-04-01,37,5550,0.04,150,5328,Brendan Bowman,"Xilinx, Inc.",Technology,Semiconductors,Fresno,93727,California,West,2012-04-29,1,Consulting - Strategy,Consulting,Tableau,Ethan Bird,Bob Turner,60,1,0.6
3789,26982,2012-04-28,2012-04-01,37,4070,0.05,110,3866.5,Clytie Dortch,"Mattel, Inc.",Consumer Non-Durables,Recreational Products/Toys,Allentown,18103,Pennsylvania,East,2012-04-29,1,Development - Python,Development,Business Model,Daniel Tusk,Allen Young,45,1,0.590909091
4274,30405,2012-04-28,2012-04-01,7,875,0.05,125,831.25,Justin Gerbode,Symantec Corporation,Technology,Computer Software: Prepackaged Software,Pearl,39208,Mississippi,South,2012-05-03,5,Training - Javascript,Training,Python,Liam Franklin,Frank Mitchell,52,1,0.584
392,2691,2012-04-29,2012-04-01,14,1750,0.1,125,1575,Ted Yedwab,Viacom Inc.,Consumer Services,Television Services,Pharr,78577,Texas,Central,2012-05-08,9,Training - Tableau,Training,Business Model,Emma Watson,Josh Martinez,67,1,0.464
3457,24643,2012-04-29,2012-04-01,30,4500,0,150,4500,Ben Molinari,PACCAR Inc.,Capital Goods,Auto Manufacturing,Columbus,43229,Ohio,East,2012-05-01,2,Consulting - Market Research,Consulting,Python,Emma Watson,Allen Young,67,1,0.553333333
4025,28742,2012-04-29,2012-04-01,35,7000,0.09,200,6370,Rick Coakley,Vodafone Group Plc,Public Utilities,Telecommunications Equipment,Dunwoody,30338,Georgia,South,2012-04-29,0,Development - Big Data,Development,Big Data,Elizabeth Carter,Frank Mitchell,52,1,0.74
4026,28742,2012-04-29,2012-04-01,7,875,0.04,125,840,Rick Coakley,Vodafone Group Plc,Public Utilities,Telecommunications Equipment,Dunwoody,30338,Georgia,South,2012-05-06,7,Training - Javascript,Training,Market Research,Liam Franklin,Frank Mitchell,52,1,0.584
4797,34086,2012-04-29,2012-04-01,41,6150,0.04,150,5904,Nat Hallsten,"Charter Communications, Inc.",Consumer Services,Television Services,Moore,73160,Oklahoma,Central,2012-05-01,2,Consulting - Market Research,Consulting,PHP,Jayden Hamilton,Josh Martinez,71,1,0.526666667
5066,36103,2012-04-29,2012-04-01,10,1250,0.01,125,1237.5,Nathan Lee,Cognizant Technology Solutions Corporation,Technology,EDP Services,Huntsville,35810,Alabama,South,2012-05-01,2,Training - SQL,Training,Strategy,Daniel Tusk,Frank Mitchell,45,1,0.64
5067,36103,2012-04-29,2012-04-01,45,6750,0.03,150,6547.5,Nathan Lee,Cognizant Technology Solutions Corporation,Technology,EDP Services,Huntsville,35810,Alabama,South,2012-05-01,2,Consulting - Market Research,Consulting,Javascript,William Bufont,Frank Mitchell,62,1,0.586666667
5384,38279,2012-04-29,2012-04-01,1,125,0.05,125,118.75,Tom Jones,"Activision Blizzard, Inc",Technology,Computer Software: Prepackaged Software,Eugene,97405,Oregon,West,2012-05-01,2,Training - SQL,Training,Python,Madison Hill,Bob Turner,58,1,0.536
7372,52519,2012-04-29,2012-04-01,6,1020,0.09,170,928.2,Bill Rawles,"Staples, Inc.",Consumer Services,Other Specialty Stores,Binghamton,13905,New York,East,2012-05-01,2,Development - .Net,Development,.Net,Elizabeth Carter,Allen Young,52,1,0.694117647
24,134,2012-04-30,2012-04-01,11,2200,0.01,200,2178,Michael Olson,Viacom Inc.,Consumer Services,Television Services,Brookfield,53005,Wisconsin,Central,2012-05-02,2,Development - Big Data,Development,Big Data,Jacob Manziel,Josh Martinez,57,1,0.715
104,644,2012-04-30,2012-04-01,5,625,0.01,125,618.75,Bill Rawles,"Staples, Inc.",Consumer Services,Other Specialty Stores,Auburn,13021,New York,East,2012-05-01,1,Training - Development,Training,SQL,Ava Wilson,Allen Young,67,1,0.464
1373,9952,2012-05-01,2012-05-01,47,9400,0.01,200,9306,Maribeth Venier,Lam Research Corporation,Technology,Industrial Machinery/Components,Fairfax,20151,Virginia,South,2012-05-03,2,Development - Big Data,Development,Market Research,Emily Taylor,Frank Mitchell,62,1,0.69
2957,21410,2012-05-01,2012-05-01,16,2720,0.01,170,2692.8,Lindsay DeVincentis,eBay Inc.,Miscellaneous,Business Services,Bozeman,59715,Montana,West,2012-05-03,2,Development - .Net,Development,Python,Emma Watson,Bob Turner,67,1,0.605882353
513,3524,2012-05-02,2012-05-01,21,2310,0,110,2310,Nicole Sweed,"Expeditors International of Washington, Inc.",Transportation,Oil Refining/Marketing,Kankakee,60901,Illinois,Central,2012-05-03,1,Development - Python,Development,Scala,Emma Watson,Josh Martinez,67,1,0.390909091
5674,40131,2012-05-02,2012-05-01,24,2640,0.06,110,2481.6,Katherine Ballard,Yahoo! Inc.,Technology,EDP Services,Essex Junction,5451,Vermont,East,2012-05-02,0,Development - Python,Development,Java,Daniel Tusk,Allen Young,45,1,0.590909091
7592,54339,2012-05-02,2012-05-01,48,8160,0.02,170,7996.8,Alan Daly,Avago Technologies Limited,Technology,Semiconductors,Rowlett,75088,Texas,Central,2012-05-09,7,Development - .Net,Development,SQL,Ava Wilson,Josh Martinez,67,1,0.605882353
7593,54339,2012-05-02,2012-05-01,41,6150,0.06,150,5781,Alan Daly,Avago Technologies Limited,Technology,Semiconductors,Rowlett,75088,Texas,Central,2012-05-07,5,Consulting - Market Research,Consulting,SQL,William Bufont,Josh Martinez,62,1,0.586666667
7986,57093,2012-05-02,2012-05-01,3,480,0.05,160,456,John Brown,"Netflix, Inc.",Consumer Services,Consumer Electronics/Video Chains,Alamogordo,88310,New Mexico,West,2012-05-09,7,Development - Java,Development,Python,Isabella Douglas,Bob Turner,75,1,0.53125
7987,57093,2012-05-02,2012-05-01,47,9400,0,200,9400,John Brown,"Netflix, Inc.",Consumer Services,Consumer Electronics/Video Chains,Alamogordo,88310,New Mexico,West,2012-05-09,7,Development - Big Data,Development,SQL,Liam Franklin,Bob Turner,52,1,0.74
1028,7488,2012-05-03,2012-05-01,9,1080,0.08,120,993.6,Chuck Bierner,"Intuitive Surgical, Inc.",Health Care,Industrial Specialties,North Las Vegas,89031,Nevada,West,2012-05-04,1,Development - Business Logic,Development,Python,Michael Alister,Bob Turner,68,1,0.433333333
2616,18917,2012-05-03,2012-05-01,14,2240,0.08,160,2060.8,Steve Shariari,"NetApp, Inc.",Technology,Electronic Components,Stow,44224,Ohio,East,2012-05-05,2,Development - Java,Development,Business Logic,Mia Moore,Allen Young,51,1,0.68125
3202,22951,2012-05-03,2012-05-01,24,3600,0.1,150,3240,Lena Luxemburg,"Discovery Communications, Inc.",Consumer Services,Television Services,Penn Hills,15235,Pennsylvania,East,2012-05-03,0,Consulting - Market Research,Consulting,SQL,Olivia Sullivan,Allen Young,53,1,0.646666667
4270,30375,2012-05-03,2012-05-01,20,3200,0.03,160,3104,Christina Eno,"Twenty-First Century Fox, Inc.",Consumer Services,Television Services,Nashville,37211,Tennessee,South,2012-05-07,4,Development - Java,Development,Python,Noah Smith,Frank Mitchell,59,1,0.63125
7186,51267,2012-05-03,2012-05-01,46,5750,0.08,125,5290,Corey Cheatham,Monster Beverage Corporation,Consumer Non-Durables,Beverages (Production/Distribution),Modesto,95351,California,West,2012-05-08,5,Training - Tableau,Training,Javascript,Elizabeth Carter,Bob Turner,52,1,0.584
7793,55749,2012-05-03,2012-05-01,42,4620,0.01,110,4573.8,Brad Creighton,VimpelCom Ltd.,Public Utilities,Telecommunications Equipment,Saint Cloud,56301,Minnesota,Central,2012-05-04,1,Development - PHP,Development,Strategy,Isabella Douglas,Josh Martinez,75,1,0.318181818
1205,8833,2012-05-04,2012-05-01,40,8000,0,200,8000,Nicole Sweed,"Expeditors International of Washington, Inc.",Transportation,Oil Refining/Marketing,Kankakee,60901,Illinois,Central,2012-05-08,4,Development - Big Data,Development,Development,Mason Gibson,Josh Martinez,71,1,0.645
1452,10470,2012-05-04,2012-05-01,40,6800,0.02,170,6664,Guy Shifley,"Wynn Resorts, Limited",Consumer Services,Hotels/Resorts,Dublin,43017,Ohio,East,2012-05-06,2,Development - .Net,Development,Business Model,Noah Smith,Allen Young,59,1,0.652941176
1453,10470,2012-05-04,2012-05-01,8,1280,0.03,160,1241.6,Guy Shifley,"Wynn Resorts, Limited",Consumer Services,Hotels/Resorts,Dublin,43017,Ohio,East,2012-05-11,7,Development - Java,Development,SQL,Ethan Bird,Allen Young,60,1,0.625
1454,10470,2012-05-04,2012-05-01,20,3000,0.09,150,2730,Guy Shifley,"Wynn Resorts, Limited",Consumer Services,Hotels/Resorts,Dublin,43017,Ohio,East,2012-05-06,2,Consulting - Market Research,Consulting,Business Model,Ava Wilson,Allen Young,67,1,0.553333333
1455,10470,2012-05-04,2012-05-01,35,4375,0.1,125,3937.5,Khloe Jacobs,CA Inc.,Technology,Computer Software: Prepackaged Software,Royal Oak,48073,Michigan,Central,2012-05-09,5,Training - SQL,Training,.Net,Olivia Sullivan,Josh Martinez,53,1,0.576
5593,39652,2012-05-04,2012-05-01,5,1000,0.03,200,970,Valerie Pelletier,"Discovery Communications, Inc.",Consumer Services,Television Services,Troutdale,97060,Oregon,West,2012-05-06,2,Development - Scala,Development,SQL,Mason Gibson,Bob Turner,71,1,0.645
5594,39652,2012-05-04,2012-05-01,4,600,0.03,150,582,Valerie Pelletier,"Discovery Communications, Inc.",Consumer Services,Television Services,Troutdale,97060,Oregon,West,2012-05-09,5,Consulting - Market Research,Consulting,Strategy,Isabella Douglas,Bob Turner,75,1,0.5
6923,49380,2012-05-04,2012-05-01,11,1650,0.02,150,1617,Jocasta Schnelling,Liberty Media Corporation,Consumer Services,Broadcasting,Reston,20190,Virginia,South,2012-05-06,2,Consulting - Strategy,Consulting,PHP,Liam Franklin,Frank Mitchell,52,1,0.653333333
290,2023,2012-05-05,2012-05-01,4,600,0.09,150,546,Sam Haberlin,"Cisco Systems, Inc.",Technology,Computer Communications Equipment,Evans,30809,Georgia,South,2012-05-05,0,Consulting - Business Model,Consulting,Market Research,Jacob Manziel,Frank Mitchell,57,1,0.62
291,2023,2012-05-05,2012-05-01,50,5500,0.06,110,5170,Sam Haberlin,"Cisco Systems, Inc.",Technology,Computer Communications Equipment,Evans,30809,Georgia,South,2012-05-07,2,Development - Python,Development,Market Research,Jacob Manziel,Frank Mitchell,57,1,0.481818182
1288,9409,2012-05-05,2012-05-01,12,1800,0.1,150,1620,Vicky Dominguez,DISH Network Corporation,Consumer Services,Television Services,Redford,48239,Michigan,Central,2012-05-07,2,Consulting - Business Model,Consulting,.Net,Jayden Hamilton,Josh Martinez,71,1,0.526666667
2261,16257,2012-05-05,2012-05-01,16,1760,0.03,110,1707.2,Greg Chand,Vertex Pharmaceuticals Incorporated,Health Care,Major Pharmaceuticals,Bay City,48708,Michigan,Central,2012-05-06,1,Development - PHP,Development,Front End Web,Michael Alister,Josh Martinez,68,1,0.381818182
6769,48197,2012-05-05,2012-05-01,32,4000,0.07,125,3720,Anthony Hudgings,Intel Corporation,Technology,Semiconductors,Shawnee,66203,Kansas,Central,2012-05-07,2,Training - SQL,Training,Business Logic,Ethan Bird,Josh Martinez,60,1,0.52
7493,53477,2012-05-05,2012-05-01,32,4000,0.01,125,3960,Joy Moren,"Ross Stores, Inc.",Consumer Services,Clothing/Shoe/Accessory Stores,West Lafayette,47906,Indiana,Central,2012-05-07,2,Training - Development,Training,Java,Michael Alister,Josh Martinez,68,1,0.456
7494,53477,2012-05-05,2012-05-01,27,3375,0.06,125,3172.5,Joy Moren,"Ross Stores, Inc.",Consumer Services,Clothing/Shoe/Accessory Stores,West Lafayette,47906,Indiana,Central,2012-05-06,1,Training - Development,Training,.Net,Emily Taylor,Josh Martinez,62,1,0.504
7495,53477,2012-05-05,2012-05-01,36,3960,0.06,110,3722.4,Joy Moren,"Ross Stores, Inc.",Consumer Services,Clothing/Shoe/Accessory Stores,West Lafayette,47906,Indiana,Central,2012-05-07,2,Development - Python,Development,Tableau,Mia Moore,Josh Martinez,51,1,0.536363636
7496,53477,2012-05-05,2012-05-01,28,5600,0.07,200,5208,Joy Moren,"Ross Stores, Inc.",Consumer Services,Clothing/Shoe/Accessory Stores,West Lafayette,47906,Indiana,Central,2012-05-07,2,Development - Big Data,Development,SQL,Sophia Dixon,Josh Martinez,71,1,0.645
936,6785,2012-05-06,2012-05-01,7,875,0.03,125,848.75,Nathan Lee,Cognizant Technology Solutions Corporation,Technology,EDP Services,Homewood,35209,Alabama,South,2012-05-08,2,Training - SQL,Training,Development,Isabella Douglas,Frank Mitchell,75,1,0.4
1188,8679,2012-05-06,2012-05-01,46,5060,0.01,110,5009.4,Roland Sayre,Amgen Inc.,Health Care,Biotechnology: Biological Products (No Diagnostic Substances),North Las Vegas,89031,Nevada,West,2012-05-07,1,Development - Python,Development,SQL,Jacob Manziel,Bob Turner,57,1,0.481818182
3032,21796,2012-05-06,2012-05-01,46,6900,0.04,150,6624,Vivek Collins,Express Scripts Holding Company,Health Care,Medical/Nursing Services,Troy,45373,Ohio,East,2012-05-10,4,Consulting - Business Model,Consulting,Strategy,Isabella Douglas,Allen Young,75,1,0.5
3033,21796,2012-05-06,2012-05-01,2,300,0.01,150,297,Vivek Collins,Express Scripts Holding Company,Health Care,Medical/Nursing Services,Troy,45373,Ohio,East,2012-05-06,0,Consulting - Market Research,Consulting,Business Logic,Mia Moore,Allen Young,51,1,0.66
3034,21796,2012-05-06,2012-05-01,41,4510,0.1,110,4059,Vivek Collins,Express Scripts Holding Company,Health Care,Medical/Nursing Services,Upper Arlington,43221,Ohio,East,2012-05-13,7,Development - PHP,Development,Java,Michael Alister,Allen Young,68,1,0.381818182
3035,21796,2012-05-06,2012-05-01,31,4340,0.07,140,4036.2,Vivek Collins,Express Scripts Holding Company,Health Care,Medical/Nursing Services,Upper Arlington,43221,Ohio,East,2012-05-11,5,Development - Database,Development,Java,William Bufont,Allen Young,62,1,0.557142857
3104,22272,2012-05-06,2012-05-01,37,5550,0.1,150,4995,Edward Bzostek,"Equinix, Inc.",Public Utilities,Telecommunications Equipment,The Woodlands,77381,Texas,Central,2012-05-08,2,Consulting - Business Model,Consulting,Java,Mia Moore,Josh Martinez,51,1,0.66
3105,22272,2012-05-06,2012-05-01,30,4500,0.08,150,4140,Edward Bzostek,"Equinix, Inc.",Public Utilities,Telecommunications Equipment,The Woodlands,77381,Texas,Central,2012-05-08,2,Consulting - Business Model,Consulting,Python,Jacob Manziel,Josh Martinez,57,1,0.62
3822,27265,2012-05-06,2012-05-01,49,7350,0.02,150,7203,Christina Eno,"Twenty-First Century Fox, Inc.",Consumer Services,Television Services,Murfreesboro,37130,Tennessee,South,2012-05-06,0,Consulting - Compensation,Consulting,SQL,Elizabeth Carter,Frank Mitchell,52,1,0.653333333
3823,27265,2012-05-06,2012-05-01,36,3960,0.05,110,3762,Christina Eno,"Twenty-First Century Fox, Inc.",Consumer Services,Television Services,Nashville,37211,Tennessee,South,2012-05-07,1,Development - PHP,Development,Java,Michael Alister,Frank Mitchell,68,1,0.381818182
3824,27265,2012-05-06,2012-05-01,49,6125,0.03,125,5941.25,Christina Eno,"Twenty-First Century Fox, Inc.",Consumer Services,Television Services,Nashville,37211,Tennessee,South,2012-05-08,2,Training - SQL,Training,Market Research,Mia Moore,Frank Mitchell,51,1,0.592
19,130,2012-05-07,2012-05-01,3,450,0.05,150,427.5,Roy Smith,Bed Bath & Beyond Inc.,Consumer Services,Home Furnishings,Cleveland,37311,Tennessee,South,2012-05-09,2,Consulting - Strategy,Consulting,Strategy,Emily Taylor,Frank Mitchell,62,1,0.586666667
20,130,2012-05-07,2012-05-01,29,3190,0.02,110,3126.2,Roy Smith,Bed Bath & Beyond Inc.,Consumer Services,Home Furnishings,Cleveland,37311,Tennessee,South,2012-05-08,1,Development - Python,Development,Python,Alexander Edison,Frank Mitchell,70,1,0.363636364
21,130,2012-05-07,2012-05-01,23,4600,0.05,200,4370,Roy Smith,Bed Bath & Beyond Inc.,Consumer Services,Home Furnishings,Cleveland,37311,Tennessee,South,2012-05-10,3,Development - Big Data,Development,Big Data,William Bufont,Frank Mitchell,62,1,0.69
2460,17862,2012-05-07,2012-05-01,1,150,0,150,150,Neil Gilcrest,"Discovery Communications, Inc.",Consumer Services,Television Services,Salisbury,28144,North Carolina,South,2012-05-08,1,Consulting - Business Model,Consulting,Java,Elizabeth Carter,Frank Mitchell,52,1,0.653333333
2461,17862,2012-05-07,2012-05-01,31,3720,0.08,120,3422.4,Neil Gilcrest,"Discovery Communications, Inc.",Consumer Services,Television Services,Salisbury,28144,North Carolina,South,2012-05-09,2,Development - Business Logic,Development,Market Research,Ethan Bird,Frank Mitchell,60,1,0.5
4319,30784,2012-05-07,2012-05-01,10,1250,0.06,125,1175,Tom Lampkin,Bed Bath & Beyond Inc.,Consumer Services,Home Furnishings,Rotterdam,12306,New York,East,2012-05-09,2,Training - Tableau,Training,Big Data,Emily Taylor,Allen Young,62,1,0.504
4320,30784,2012-05-07,2012-05-01,48,5760,0.02,120,5644.8,Tom Lampkin,Bed Bath & Beyond Inc.,Consumer Services,Home Furnishings,Rotterdam,12306,New York,East,2012-05-08,1,Development - Business Logic,Development,Market Research,Jayden Hamilton,Allen Young,71,1,0.408333333
6599,46977,2012-05-07,2012-05-01,10,1600,0.06,160,1504,Allen Grady,Comcast Corporation,Consumer Services,Television Services,San Antonio,78207,Texas,Central,2012-05-09,2,Development - Java,Development,Scala,Ethan Bird,Josh Martinez,60,1,0.625
6600,46977,2012-05-07,2012-05-01,19,2850,0.02,150,2793,Allen Grady,Comcast Corporation,Consumer Services,Television Services,San Antonio,78207,Texas,Central,2012-05-09,2,Consulting - Market Research,Consulting,Python,Emily Taylor,Josh Martinez,62,1,0.586666667
8177,58435,2012-05-07,2012-05-01,11,1760,0.01,160,1742.4,Arthur Howell,Liberty Media Corporation,Consumer Services,Broadcasting,Columbus,43229,Ohio,East,2012-05-09,2,Development - Java,Development,Development,Liam Franklin,Allen Young,52,1,0.675
2979,21510,2012-05-08,2012-05-01,16,2400,0.04,150,2304,Alyssa Clasen,"Cisco Systems, Inc.",Technology,Computer Communications Equipment,Mcminnville,97128,Oregon,West,2012-05-08,0,Consulting - Business Model,Consulting,Development,Ava Wilson,Bob Turner,67,1,0.553333333
5405,38437,2012-05-08,2012-05-01,19,2375,0.04,125,2280,Cynthia Kirkland,PACCAR Inc.,Capital Goods,Auto Manufacturing,Abilene,79605,Texas,Central,2012-05-09,1,Training - Javascript,Training,Database,Olivia Sullivan,Josh Martinez,53,1,0.576
5406,38437,2012-05-08,2012-05-01,17,2040,0.08,120,1876.8,Cynthia Kirkland,PACCAR Inc.,Capital Goods,Auto Manufacturing,Allen,75002,Texas,Central,2012-05-09,1,Development - Business Logic,Development,Java,Daniel Tusk,Josh Martinez,45,1,0.625
7390,52673,2012-05-08,2012-05-01,14,2100,0.07,150,1953,Ruben Staebel,Celgene Corporation,Health Care,Major Pharmaceuticals,Everett,98208,Washington,West,2012-05-09,1,Consulting - Market Research,Consulting,Big Data,Emily Taylor,Bob Turner,62,1,0.586666667
7391,52673,2012-05-08,2012-05-01,4,640,0.05,160,608,Ruben Staebel,Celgene Corporation,Health Care,Major Pharmaceuticals,Federal Way,98023,Washington,West,2012-05-10,2,Development - Java,Development,Business Logic,William Bufont,Bob Turner,62,1,0.6125
1844,13282,2012-05-09,2012-05-01,22,3300,0.09,150,3003,Roy Schnelling,Biogen Idec Inc.,Health Care,Biotechnology: Biological Products (No Diagnostic Substances),Burien,98146,Washington,West,2012-05-14,5,Consulting - Business Model,Consulting,Business Logic,Sophia Dixon,Bob Turner,71,1,0.526666667
1845,13282,2012-05-09,2012-05-01,2,400,0.02,200,392,Roy Schnelling,Biogen Idec Inc.,Health Care,Biotechnology: Biological Products (No Diagnostic Substances),Burien,98146,Washington,West,2012-05-13,4,Development - Scala,Development,Javascript,Jacob Manziel,Bob Turner,57,1,0.715
3555,25348,2012-05-09,2012-05-01,6,1020,0.08,170,938.4,Ryan Johnson,"Charter Communications, Inc.",Consumer Services,Television Services,North Miami Beach,33160,Florida,South,2012-05-11,2,Development - .Net,Development,Strategy,Alexander Edison,Frank Mitchell,70,1,0.588235294
3556,25348,2012-05-09,2012-05-01,7,1050,0.09,150,955.5,Ryan Johnson,"Charter Communications, Inc.",Consumer Services,Television Services,North Miami Beach,33160,Florida,South,2012-05-11,2,Consulting - Market Research,Consulting,Python,Sophia Dixon,Frank Mitchell,71,1,0.526666667
7975,57058,2012-05-09,2012-05-01,28,4480,0,160,4480,Jack Satty,"C.H. Robinson Worldwide, Inc.",Transportation,Oil Refining/Marketing,Daytona Beach,32114,Florida,South,2012-05-09,0,Development - Java,Development,Java,Michael Alister,Frank Mitchell,68,1,0.575
7976,57058,2012-05-09,2012-05-01,27,4050,0.07,150,3766.5,Jack Satty,"C.H. Robinson Worldwide, Inc.",Transportation,Oil Refining/Marketing,Daytona Beach,32114,Florida,South,2012-05-10,1,Consulting - Business Model,Consulting,Java,Daniel Tusk,Frank Mitchell,45,1,0.7
718,5121,2012-05-10,2012-05-01,45,6750,0.07,150,6277.5,Ralph Eplett,Sigma-Aldrich Corporation,Consumer Durables,Specialty Chemicals,Jackson,49201,Michigan,Central,2012-05-11,1,Consulting - Market Research,Consulting,Java,Ethan Bird,Josh Martinez,60,1,0.6
982,7106,2012-05-10,2012-05-01,8,1280,0.05,160,1216,Shaun O'Brian,KLA-Tencor Corporation,Capital Goods,Electronic Components,Minnetonka Mills,55343,Minnesota,Central,2012-05-12,2,Development - Java,Development,Java,Jacob Manziel,Josh Martinez,57,1,0.64375
983,7106,2012-05-10,2012-05-01,31,4650,0.01,150,4603.5,Shaun O'Brian,KLA-Tencor Corporation,Capital Goods,Electronic Components,Minnetonka Mills,55343,Minnesota,Central,2012-05-12,2,Consulting - Business Model,Consulting,Big Data,Emma Watson,Josh Martinez,67,1,0.553333333
984,7106,2012-05-10,2012-05-01,36,7200,0.01,200,7128,Shaun O'Brian,KLA-Tencor Corporation,Capital Goods,Electronic Components,Minnetonka Mills,55343,Minnesota,Central,2012-05-12,2,Development - Big Data,Development,Java,William Bufont,Josh Martinez,62,1,0.69
3743,26756,2012-05-10,2012-05-01,25,3750,0.07,150,3487.5,Giulietta Black,"TripAdvisor, Inc.",Technology,"Computer Software: Programming, Data Processing",Ann Arbor,48104,Michigan,Central,2012-05-10,0,Consulting - Business Model,Consulting,PHP,Elizabeth Carter,Josh Martinez,52,1,0.653333333
3744,26756,2012-05-10,2012-05-01,40,4400,0.09,110,4004,Giulietta Black,"TripAdvisor, Inc.",Technology,"Computer Software: Programming, Data Processing",Ann Arbor,48104,Michigan,Central,2012-05-12,2,Development - Python,Development,SQL,Mason Gibson,Josh Martinez,71,1,0.354545455
3745,26756,2012-05-10,2012-05-01,20,2200,0.07,110,2046,Giulietta Black,"TripAdvisor, Inc.",Technology,"Computer Software: Programming, Data Processing",Ann Arbor,48104,Michigan,Central,2012-05-12,2,Development - Python,Development,SQL,Noah Smith,Josh Martinez,59,1,0.463636364
6143,43493,2012-05-10,2012-05-01,22,2420,0.03,110,2347.4,Nick Spruell,DIRECTV,Consumer Services,Telecommunications Equipment,Kenner,70065,Louisiana,South,2012-05-11,1,Development - Python,Development,Python,Ava Wilson,Frank Mitchell,67,1,0.390909091
6144,43493,2012-05-10,2012-05-01,14,1540,0.05,110,1463,Nick Spruell,DIRECTV,Consumer Services,Telecommunications Equipment,Kenner,70065,Louisiana,South,2012-05-12,2,Development - Python,Development,Compensation,Elizabeth Carter,Frank Mitchell,52,1,0.527272727
6145,43493,2012-05-10,2012-05-01,37,5550,0.1,150,4995,Nick Spruell,DIRECTV,Consumer Services,Telecommunications Equipment,Kenner,70065,Louisiana,South,2012-05-13,3,Consulting - Market Research,Consulting,Business Logic,Michael Alister,Frank Mitchell,68,1,0.546666667
2075,14851,2012-05-11,2012-05-01,6,900,0.08,150,828,Juliana Miller,Sirius XM Holdings Inc.,Consumer Services,Broadcasting,San Francisco,94110,California,West,2012-05-12,1,Consulting - Compensation,Consulting,Python,Abigail Young,Bob Turner,50,1,0.666666667
2076,14851,2012-05-11,2012-05-01,26,3900,0.08,150,3588,Juliana Miller,Sirius XM Holdings Inc.,Consumer Services,Broadcasting,San Francisco,94110,California,West,2012-05-13,2,Consulting - Market Research,Consulting,Tableau,Jayden Hamilton,Bob Turner,71,1,0.526666667
2160,15524,2012-05-11,2012-05-01,27,3780,0.03,140,3666.6,John Connell,Microsoft Corporation,Technology,Computer Software: Prepackaged Software,Garner,27529,North Carolina,South,2012-05-12,1,Development - Front End Web,Development,Tableau,Jayden Hamilton,Frank Mitchell,71,1,0.492857143
2285,16454,2012-05-11,2012-05-01,12,1920,0.04,160,1843.2,Chris Latchford,"Fiserv, Inc.",Technology,EDP Services,Steubenville,43952,Ohio,East,2012-05-11,0,Development - Java,Development,Business Logic,Mia Moore,Allen Young,51,1,0.68125
4404,31393,2012-05-11,2012-05-01,4,500,0.04,125,480,Cindy Gastineau,Liberty Global plc,Consumer Services,Television Services,Frankfort,60423,Illinois,Central,2012-05-12,1,Training - SQL,Training,Business Model,Sophia Dixon,Josh Martinez,71,1,0.432
4405,31393,2012-05-11,2012-05-01,31,4340,0.09,140,3949.4,Cindy Gastineau,Liberty Global plc,Consumer Services,Television Services,Frankfort,60423,Illinois,Central,2012-05-13,2,Development - Front End Web,Development,PHP,Liam Franklin,Josh Martinez,52,1,0.628571429
595,4069,2012-05-12,2012-05-01,8,880,0.08,110,809.6,Harold McCarthy,"American Airlines Group, Inc.",Transportation,Air Freight/Delivery Services,Pendleton,97801,Oregon,West,2012-05-14,2,Development - Python,Development,Scala,Mason Gibson,Bob Turner,71,1,0.354545455
596,4069,2012-05-12,2012-05-01,47,5640,0.1,120,5076,Harold McCarthy,"American Airlines Group, Inc.",Transportation,Air Freight/Delivery Services,Pendleton,97801,Oregon,West,2012-05-12,0,Development - Business Logic,Development,SQL,Daniel Tusk,Bob Turner,45,1,0.625
597,4069,2012-05-12,2012-05-01,30,4200,0.05,140,3990,Harold McCarthy,"American Airlines Group, Inc.",Transportation,Air Freight/Delivery Services,Pendleton,97801,Oregon,West,2012-05-15,3,Development - Database,Development,Business Model,Ethan Bird,Bob Turner,60,1,0.571428571
1485,10688,2012-05-12,2012-05-01,14,1750,0.05,125,1662.5,Craig Donatelli,"O'Reilly Automotive, Inc.",Consumer Services,Other Specialty Stores,Colchester,6415,Connecticut,East,2012-05-13,1,Training - SQL,Training,Front End Web,Jayden Hamilton,Allen Young,71,1,0.432
3602,25733,2012-05-12,2012-05-01,24,3840,0.09,160,3494.4,Eugene Melton,Linear Technology Corporation,Technology,Semiconductors,Champaign,61821,Illinois,Central,2012-05-17,5,Development - Java,Development,.Net,Mia Moore,Josh Martinez,51,1,0.68125
4335,30886,2012-05-12,2012-05-01,28,5600,0.02,200,5488,Linda Brennan,Electronic Arts Inc.,Technology,Computer Software: Prepackaged Software,Palm Bay,32905,Florida,South,2012-05-17,5,Development - Big Data,Development,Business Model,Mia Moore,Frank Mitchell,51,1,0.745
7061,50403,2012-05-12,2012-05-01,22,2420,0.08,110,2226.4,Katherine Ducich,"Wynn Resorts, Limited",Consumer Services,Hotels/Resorts,Palm Beach Gardens,33403,Florida,South,2012-05-13,1,Development - Python,Development,Database,Liam Franklin,Frank Mitchell,52,1,0.527272727
7062,50403,2012-05-12,2012-05-01,38,6080,0.05,160,5776,Katherine Ducich,"Wynn Resorts, Limited",Consumer Services,Hotels/Resorts,Palo Alto,94306,California,West,2012-05-14,2,Development - Java,Development,Strategy,Sophia Dixon,Bob Turner,71,1,0.55625
7427,52932,2012-05-12,2012-05-01,3,330,0,110,330,Joni Visinsky,"O'Reilly Automotive, Inc.",Consumer Services,Other Specialty Stores,Midwest City,73110,Oklahoma,Central,2012-05-17,5,Development - Python,Development,Python,Emily Taylor,Josh Martinez,62,1,0.436363636
7435,53024,2012-05-12,2012-05-01,9,1125,0.09,125,1023.75,Ritsa Brown,"Whole Foods Market, Inc.",Consumer Services,Food Chains,Stillwater,74074,Oklahoma,Central,2012-05-13,1,Training - SQL,Training,Python,Emily Taylor,Josh Martinez,62,1,0.504
7436,53024,2012-05-12,2012-05-01,46,6900,0.03,150,6693,Ritsa Brown,"Whole Foods Market, Inc.",Consumer Services,Food Chains,Stillwater,74074,Oklahoma,Central,2012-05-13,1,Consulting - Market Research,Consulting,.Net,William Bufont,Josh Martinez,62,1,0.586666667
7928,56672,2012-05-12,2012-05-01,34,4080,0.1,120,3672,Clay Kennedy,Liberty Interactive Corporation,Consumer Services,Catalog/Specialty Distribution,Brooklyn,11226,New York,East,2012-05-13,1,Development - Business Logic,Development,SQL,Jayden Hamilton,Allen Young,71,1,0.408333333
7929,56672,2012-05-12,2012-05-01,8,1000,0.02,125,980,Clay Kennedy,Liberty Interactive Corporation,Consumer Services,Catalog/Specialty Distribution,Buffalo,14215,New York,East,2012-05-14,2,Training - Javascript,Training,Business Logic,Jacob Manziel,Allen Young,57,1,0.544
7930,56672,2012-05-12,2012-05-01,45,6750,0.1,150,6075,Clay Kennedy,Liberty Interactive Corporation,Consumer Services,Catalog/Specialty Distribution,Buffalo,14215,New York,East,2012-05-14,2,Consulting - Market Research,Consulting,Strategy,Ethan Bird,Allen Young,60,1,0.6
1105,8130,2012-05-13,2012-05-01,15,2400,0.03,160,2328,Russell Folk,Check Point Software Technologies Ltd.,Technology,Computer Software: Prepackaged Software,Poinciana,34759,Florida,South,2012-05-15,2,Development - Java,Development,Business Logic,Sophia Dixon,Frank Mitchell,71,1,0.55625
1526,11011,2012-05-13,2012-05-01,33,4125,0.04,125,3960,Fred Collins,PACCAR Inc.,Capital Goods,Auto Manufacturing,Bennington,5201,Vermont,East,2012-05-15,2,Training - Tableau,Training,SQL,Sophia Dixon,Allen Young,71,1,0.432
1527,11011,2012-05-13,2012-05-01,36,7200,0.1,200,6480,Fred Collins,PACCAR Inc.,Capital Goods,Auto Manufacturing,Garfield,7026,New Jersey,East,2012-05-14,1,Development - Scala,Development,Python,Mason Gibson,Allen Young,71,1,0.645
1528,11011,2012-05-13,2012-05-01,36,3960,0.1,110,3564,Fred Collins,PACCAR Inc.,Capital Goods,Auto Manufacturing,New Bedford,2744,MA,East,2012-05-14,1,Development - PHP,Development,Big Data,Isabella Douglas,Allen Young,75,1,0.318181818
2151,15399,2012-05-13,2012-05-01,38,5700,0.02,150,5586,Benjamin Schmidt,"Ross Stores, Inc.",Consumer Services,Clothing/Shoe/Accessory Stores,Coventry,2816,Rhode Island,East,2012-05-15,2,Consulting - Market Research,Consulting,Database,Mia Moore,Allen Young,51,1,0.66
2152,15399,2012-05-13,2012-05-01,7,875,0.01,125,866.25,Benjamin Schmidt,"Ross Stores, Inc.",Consumer Services,Clothing/Shoe/Accessory Stores,Lyndhurst,7071,New Jersey,East,2012-05-15,2,Training - Development,Training,Development,Ethan Bird,Allen Young,60,1,0.52
2153,15399,2012-05-13,2012-05-01,46,6900,0.04,150,6624,Benjamin Schmidt,"Ross Stores, Inc.",Consumer Services,Clothing/Shoe/Accessory Stores,Saco,4072,Maine,East,2012-05-14,1,Consulting - Market Research,Consulting,Business Logic,Mia Moore,Allen Young,51,1,0.66
2436,17698,2012-05-13,2012-05-01,43,7310,0.08,170,6725.2,Michael Vittorini,"Verisk Analytics, Inc.",Technology,EDP Services,Maplewood,7040,New Jersey,East,2012-05-15,2,Development - .Net,Development,Java,William Bufont,Allen Young,62,1,0.635294118
2437,17698,2012-05-13,2012-05-01,22,3300,0.1,150,2970,Michael Vittorini,"Verisk Analytics, Inc.",Technology,EDP Services,Portland,4101,Maine,East,2012-05-15,2,Consulting - Market Research,Consulting,SQL,Olivia Sullivan,Allen Young,53,1,0.646666667
2438,17698,2012-05-13,2012-05-01,40,6400,0.04,160,6144,Michael Vittorini,"Verisk Analytics, Inc.",Technology,EDP Services,Waterville,4901,Maine,East,2012-05-14,1,Development - Java,Development,Python,Emma Watson,Allen Young,67,1,0.58125
5138,36644,2012-05-13,2012-05-01,24,3600,0.06,150,3384,Dorothy Deggeller,Comcast Corporation,Consumer Services,Television Services,Saint Charles,60174,Illinois,Central,2012-05-14,1,Consulting - Business Model,Consulting,Database,Ava Wilson,Josh Martinez,67,1,0.553333333
6609,47014,2012-05-13,2012-05-01,33,4125,0.08,125,3795,Meg Rupert,Tractor Supply Company,Consumer Services,RETAIL: Building Materials,Mauldin,29662,South Carolina,South,2012-05-15,2,Training - Development,Training,Development,Liam Franklin,Frank Mitchell,52,1,0.584
8233,58853,2012-05-13,2012-05-01,27,3375,0.09,125,3071.25,Eugene Farry,Liberty Media Corporation,Consumer Services,Broadcasting,Cleburne,76031,Texas,Central,2012-05-14,1,Training - Development,Training,.Net,Ava Wilson,Josh Martinez,67,1,0.464
2275,16359,2012-05-14,2012-05-01,39,4290,0.06,110,4032.6,Grant Ellison,Texas Instruments Incorporated,Technology,Semiconductors,Charleston,25314,West Virginia,East,2012-05-15,1,Development - PHP,Development,Market Research,Alexander Edison,Allen Young,70,1,0.363636364
2276,16359,2012-05-14,2012-05-01,8,960,0,120,960,Grant Ellison,Texas Instruments Incorporated,Technology,Semiconductors,Charleston,25314,West Virginia,East,2012-05-14,0,Development - Business Logic,Development,Java,Isabella Douglas,Allen Young,75,1,0.375
5561,39365,2012-05-14,2012-05-01,32,4800,0.1,150,4320,Cynthia Kirkland,PACCAR Inc.,Capital Goods,Auto Manufacturing,Allen,75002,Texas,Central,2012-05-17,3,Consulting - Business Model,Consulting,Market Research,Elizabeth Carter,Josh Martinez,52,1,0.653333333
2221,16039,2012-05-16,2012-05-01,3,450,0.1,150,405,Michelle Chapman,Adobe Systems Incorporated,Technology,Computer Software: Prepackaged Software,Glendale Heights,60139,Illinois,Central,2012-05-17,1,Consulting - Business Model,Consulting,Market Research,Mia Moore,Josh Martinez,51,1,0.66
8134,58145,2012-05-16,2012-05-01,33,4125,0,125,4125,Darren Perrino,Seagate Technology.,Technology,Electronic Components,Camp Springs,20746,Maryland,East,2012-05-16,0,Training - SQL,Training,Market Research,Olivia Sullivan,Allen Young,53,1,0.576
1891,13572,2012-05-17,2012-05-01,7,1050,0.07,150,976.5,Pierre Bellavance,"Regeneron Pharmaceuticals, Inc.",Health Care,Major Pharmaceuticals,Linden,7036,New Jersey,East,2012-05-18,1,Consulting - Business Model,Consulting,Python,Emma Watson,Allen Young,67,1,0.553333333
5527,39168,2012-05-17,2012-05-01,22,3520,0.07,160,3273.6,Natalie Jones,Comcast Corporation,Consumer Services,Television Services,Muskego,53150,Wisconsin,Central,2012-05-20,3,Development - Java,Development,SQL,Emily Taylor,Josh Martinez,62,1,0.6125
5528,39168,2012-05-17,2012-05-01,50,5500,0,110,5500,Natalie Jones,Comcast Corporation,Consumer Services,Television Services,Muskego,53150,Wisconsin,Central,2012-05-19,2,Development - Python,Development,Big Data,Liam Franklin,Josh Martinez,52,1,0.527272727
5529,39168,2012-05-17,2012-05-01,30,3600,0.06,120,3384,Natalie Jones,Comcast Corporation,Consumer Services,Television Services,Muskego,53150,Wisconsin,Central,2012-05-19,2,Development - Business Logic,Development,Java,Ethan Bird,Josh Martinez,60,1,0.5
7444,53120,2012-05-17,2012-05-01,5,550,0.09,110,500.5,Cindy Mathis,Liberty Global plc,Consumer Services,Television Services,Phoenix,85023,Arizona,West,2012-05-19,2,Development - Python,Development,Python,Liam Franklin,Bob Turner,52,1,0.527272727
7515,53667,2012-05-17,2012-05-01,33,5280,0.08,160,4857.6,Steve Vittorini,Mylan Inc.,Health Care,Major Pharmaceuticals,Oakdale,55128,Minnesota,Central,2012-05-19,2,Development - Java,Development,.Net,Sophia Dixon,Josh Martinez,71,1,0.55625
7516,53667,2012-05-17,2012-05-01,16,2400,0.09,150,2184,Steve Vittorini,Mylan Inc.,Health Care,Major Pharmaceuticals,Oakdale,55128,Minnesota,Central,2012-05-19,2,Consulting - Market Research,Consulting,Development,Elizabeth Carter,Josh Martinez,52,1,0.653333333
8076,57602,2012-05-17,2012-05-01,43,8600,0.02,200,8428,Rachel Prost,SBA Communications Corporation,Consumer Services,Telecommunications Equipment,Plant City,33566,Florida,South,2012-05-26,9,Development - Scala,Development,Business Model,Ava Wilson,Frank Mitchell,67,1,0.665
8316,59425,2012-05-17,2012-05-01,24,3600,0,150,3600,Giulietta Gibson,Seagate Technology.,Technology,Electronic Components,Indianapolis,46203,Indiana,Central,2012-05-19,2,Consulting - Business Model,Consulting,Market Research,Isabella Douglas,Josh Martinez,75,1,0.5
8317,59425,2012-05-17,2012-05-01,46,5060,0.04,110,4857.6,Giulietta Gibson,Seagate Technology.,Technology,Electronic Components,Indianapolis,46203,Indiana,Central,2012-05-20,3,Development - Python,Development,Scala,Mia Moore,Josh Martinez,51,1,0.536363636
247,1701,2012-05-18,2012-05-01,49,7350,0.01,150,7276.5,Ed Byrd,DIRECTV,Consumer Services,Telecommunications Equipment,Duncanville,75116,Texas,Central,2012-05-20,2,Consulting - Business Model,Consulting,Business Logic,Jayden Hamilton,Josh Martinez,71,1,0.526666667
248,1701,2012-05-18,2012-05-01,1,125,0.02,125,122.5,Ed Byrd,DIRECTV,Consumer Services,Telecommunications Equipment,Duncanville,75116,Texas,Central,2012-05-20,2,Training - SQL,Training,Python,Ava Wilson,Josh Martinez,67,1,0.464
1281,9312,2012-05-18,2012-05-01,43,5375,0.05,125,5106.25,Steven Barreto,NVIDIA Corporation,Technology,Semiconductors,Sarasota,34239,Florida,South,2012-05-19,1,Training - Development,Training,Business Model,Madison Hill,Frank Mitchell,58,1,0.536
2409,17447,2012-05-18,2012-05-01,42,4620,0.01,110,4573.8,Carol Weiss,Comcast Corporation,Consumer Services,Television Services,Parker,80134,Colorado,West,2012-05-20,2,Development - Python,Development,Compensation,Liam Franklin,Bob Turner,52,1,0.527272727
7576,54181,2012-05-18,2012-05-01,12,1800,0.03,150,1746,Duane Abelman,"Citrix Systems, Inc.",Technology,Computer Software: Prepackaged Software,Easton,18040,Pennsylvania,East,2012-05-20,2,Consulting - Strategy,Consulting,.Net,Daniel Tusk,Allen Young,45,1,0.7
2860,20642,2012-05-19,2012-05-01,32,6400,0.02,200,6272,Darren Wasserman,Symantec Corporation,Technology,Computer Software: Prepackaged Software,Prior Lake,55372,Minnesota,Central,2012-05-20,1,Development - Scala,Development,Tableau,Michael Alister,Josh Martinez,68,1,0.66
2861,20642,2012-05-19,2012-05-01,47,9400,0.02,200,9212,Darren Wasserman,Symantec Corporation,Technology,Computer Software: Prepackaged Software,Sparks,89431,Nevada,West,2012-05-19,0,Development - Big Data,Development,Javascript,Alexander Edison,Bob Turner,70,1,0.65
3315,23681,2012-05-19,2012-05-01,42,8400,0,200,8400,Jenna Nguyen,"Expeditors International of Washington, Inc.",Transportation,Oil Refining/Marketing,Lancaster,17602,Pennsylvania,East,2012-05-21,2,Development - Big Data,Development,Java,Madison Hill,Allen Young,58,1,0.71
172,1088,2012-05-20,2012-05-01,13,1950,0.1,150,1755,Muhammed Kamberova,Celgene Corporation,Health Care,Major Pharmaceuticals,Oakton,22124,Virginia,South,2012-05-27,7,Consulting - Business Model,Consulting,Python,Elizabeth Carter,Frank Mitchell,52,1,0.653333333
1060,7841,2012-05-20,2012-05-01,21,2625,0.07,125,2441.25,Darren Perrino,Seagate Technology.,Technology,Electronic Components,Amarillo,79109,Texas,Central,2012-05-22,2,Training - SQL,Training,Python,Noah Smith,Josh Martinez,59,1,0.528
1061,7841,2012-05-20,2012-05-01,17,2125,0.01,125,2103.75,Darren Perrino,Seagate Technology.,Technology,Electronic Components,Amarillo,79109,Texas,Central,2012-05-22,2,Training - SQL,Training,Tableau,Liam Franklin,Josh Martinez,52,1,0.584
2031,14497,2012-05-20,2012-05-01,34,3740,0.02,110,3665.2,Sung Martin,"Ross Stores, Inc.",Consumer Services,Clothing/Shoe/Accessory Stores,Pocatello,83201,Idaho,West,2012-05-23,3,Development - Python,Development,Java,Mason Gibson,Bob Turner,71,1,0.354545455
3148,22563,2012-05-20,2012-05-01,32,4000,0.06,125,3760,Laurel LaWare,Catamaran Corporation,Finance,Specialty Insurers,Bozeman,59715,Montana,West,2012-05-23,3,Training - SQL,Training,Python,Michael Alister,Bob Turner,68,1,0.456
5251,37350,2012-05-20,2012-05-01,7,840,0.07,120,781.2,Kelly Bensley,"Applied Materials, Inc.",Technology,Semiconductors,Greer,29651,South Carolina,South,2012-05-21,1,Development - Business Logic,Development,Python,Madison Hill,Frank Mitchell,58,1,0.516666667
5464,38817,2012-05-20,2012-05-01,1,150,0.02,150,147,Valerie Pelletier,"Discovery Communications, Inc.",Consumer Services,Television Services,Troutdale,97060,Oregon,West,2012-05-21,1,Consulting - Business Model,Consulting,SQL,Ava Wilson,Bob Turner,67,1,0.553333333
6879,49029,2012-05-20,2012-05-01,49,7350,0.06,150,6909,Jim Kriz,Linear Technology Corporation,Technology,Semiconductors,Highland,46322,Indiana,Central,2012-05-22,2,Consulting - Market Research,Consulting,Market Research,Mia Moore,Josh Martinez,51,1,0.66
2440,17701,2012-05-21,2012-05-01,21,3360,0.09,160,3057.6,Brad Fisher,Vodafone Group Plc,Public Utilities,Telecommunications Equipment,Los Altos,94024,California,West,2012-05-22,1,Development - Java,Development,Business Model,Mia Moore,Bob Turner,51,1,0.68125
2549,18466,2012-05-21,2012-05-01,25,2750,0.09,110,2502.5,Deanra Sachs,"Analog Devices, Inc.",Technology,Semiconductors,Riverside,92503,California,West,2012-05-30,9,Development - PHP,Development,Development,Michael Alister,Bob Turner,68,1,0.381818182
2550,18466,2012-05-21,2012-05-01,24,3600,0.08,150,3312,Deanra Sachs,"Analog Devices, Inc.",Technology,Semiconductors,Riverside,92503,California,West,2012-05-21,0,Consulting - Strategy,Consulting,Front End Web,William Bufont,Bob Turner,62,1,0.586666667
4262,30343,2012-05-21,2012-05-01,48,7200,0,150,7200,Brian Pardue,Apple Inc.,Technology,Computer Manufacturing,Murray,84107,Utah,West,2012-05-22,1,Consulting - Business Model,Consulting,Java,Abigail Young,Bob Turner,50,1,0.666666667
4263,30343,2012-05-21,2012-05-01,28,5600,0.08,200,5152,Brian Pardue,Apple Inc.,Technology,Computer Manufacturing,Ogden,84404,Utah,West,2012-05-23,2,Development - Scala,Development,Business Logic,Isabella Douglas,Bob Turner,75,1,0.625
4264,30343,2012-05-21,2012-05-01,8,1200,0.09,150,1092,Craig Ellison,Mylan Inc.,Health Care,Major Pharmaceuticals,Apex,27502,North Carolina,South,2012-05-23,2,Consulting - Strategy,Consulting,Java,Jacob Manziel,Frank Mitchell,57,1,0.62
5286,37634,2012-05-21,2012-05-01,32,6400,0.07,200,5952,Brendan Gockenbach,"Wynn Resorts, Limited",Consumer Services,Hotels/Resorts,Oswego,60543,Illinois,Central,2012-05-22,1,Development - Big Data,Development,Business Model,William Bufont,Josh Martinez,62,1,0.69
7336,52290,2012-05-21,2012-05-01,7,1120,0.08,160,1030.4,Dennis Eason,"Amazon.com, Inc.",Consumer Services,Catalog/Specialty Distribution,Commack,11725,New York,East,2012-05-25,4,Development - Java,Development,Strategy,Jacob Manziel,Allen Young,57,1,0.64375
7337,52290,2012-05-21,2012-05-01,28,4200,0.1,150,3780,Dennis Eason,"Amazon.com, Inc.",Consumer Services,Catalog/Specialty Distribution,Commack,11725,New York,East,2012-05-30,9,Consulting - Market Research,Consulting,Business Logic,Mason Gibson,Allen Young,71,1,0.526666667
2596,18757,2012-05-22,2012-05-01,9,1440,0.03,160,1396.8,Matthew Nguyen,"Regeneron Pharmaceuticals, Inc.",Health Care,Major Pharmaceuticals,Watertown,53094,Wisconsin,Central,2012-05-24,2,Development - Java,Development,Java,Emily Taylor,Josh Martinez,62,1,0.6125
2597,18757,2012-05-22,2012-05-01,5,800,0.02,160,784,Matthew Nguyen,"Regeneron Pharmaceuticals, Inc.",Health Care,Major Pharmaceuticals,Watertown,53094,Wisconsin,Central,2012-05-27,5,Development - Java,Development,Development,Michael Alister,Josh Martinez,68,1,0.575
2598,18757,2012-05-22,2012-05-01,43,4730,0.01,110,4682.7,Matthew Nguyen,"Regeneron Pharmaceuticals, Inc.",Health Care,Major Pharmaceuticals,Winter Garden,34787,Florida,South,2012-05-29,7,Development - Python,Development,Compensation,Liam Franklin,Frank Mitchell,52,1,0.527272727
3967,28294,2012-05-22,2012-05-01,47,6580,0,140,6580,Lindsay DeVincentis,eBay Inc.,Miscellaneous,Business Services,Laurinburg,28352,North Carolina,South,2012-05-23,1,Development - Database,Development,Strategy,Ava Wilson,Frank Mitchell,67,1,0.521428571
4577,32608,2012-05-22,2012-05-01,20,3400,0.05,170,3230,Xylona Takahito,"Fiserv, Inc.",Technology,EDP Services,Bowling Green,43402,Ohio,East,2012-05-24,2,Development - .Net,Development,Javascript,Ethan Bird,Allen Young,60,1,0.647058824
5371,38182,2012-05-22,2012-05-01,45,9000,0.07,200,8370,Randy Baptist,"Staples, Inc.",Consumer Services,Other Specialty Stores,Clarksville,37042,Tennessee,South,2012-05-22,0,Development - Big Data,Development,.Net,Madison Hill,Frank Mitchell,58,1,0.71
1912,13670,2012-05-23,2012-05-01,27,5400,0.04,200,5184,Art Coram,Liberty Global plc,Consumer Services,Television Services,Hanover,17331,Pennsylvania,East,2012-05-26,3,Development - Scala,Development,Java,Sophia Dixon,Allen Young,71,1,0.645
3568,25447,2012-05-23,2012-05-01,25,3125,0.09,125,2843.75,Randy Baptist,"Staples, Inc.",Consumer Services,Other Specialty Stores,Chattanooga,37421,Tennessee,South,2012-05-24,1,Training - SQL,Training,Python,Jacob Manziel,Frank Mitchell,57,1,0.544
3569,25447,2012-05-23,2012-05-01,18,2250,0.03,125,2182.5,Randy Baptist,"Staples, Inc.",Consumer Services,Other Specialty Stores,Chattanooga,37421,Tennessee,South,2012-05-26,3,Training - Javascript,Training,Big Data,Jayden Hamilton,Frank Mitchell,71,1,0.432
4510,32100,2012-05-23,2012-05-01,29,4350,0.08,150,4002,Liz Sundaresam,"Fiserv, Inc.",Technology,EDP Services,High Point,27260,North Carolina,South,2012-05-25,2,Consulting - Business Model,Consulting,PHP,Noah Smith,Frank Mitchell,59,1,0.606666667
6147,43523,2012-05-23,2012-05-01,50,5500,0.04,110,5280,Anna Hwang,"Facebook, Inc.",Technology,"Computer Software: Programming, Data Processing",Overland Park,66212,Kansas,Central,2012-05-25,2,Development - Python,Development,Front End Web,Noah Smith,Josh Martinez,59,1,0.463636364
925,6693,2012-05-24,2012-05-01,16,2240,0.09,140,2038.4,Astrea Meade,Liberty Interactive Corporation,Consumer Services,Catalog/Specialty Distribution,San Jose,95123,California,West,2012-05-26,2,Development - Database,Development,Business Model,Noah Smith,Bob Turner,59,1,0.578571429
5029,35842,2012-05-24,2012-05-01,18,3600,0.03,200,3492,Susan Bickford,Sirius XM Holdings Inc.,Consumer Services,Broadcasting,New Orleans,70117,Louisiana,South,2012-05-26,2,Development - Scala,Development,Big Data,Jayden Hamilton,Frank Mitchell,71,1,0.645
7466,53285,2012-05-24,2012-05-01,6,960,0.04,160,921.6,Eudokia Schmidt,Liberty Global plc,Consumer Services,Television Services,Lewisville,75057,Texas,Central,2012-05-26,2,Development - Java,Development,SQL,Mason Gibson,Josh Martinez,71,1,0.55625
1788,12804,2012-05-25,2012-05-01,21,4200,0,200,4200,Philip Ludtke,"Paychex, Inc.",Consumer Services,Diversified Commercial Services,Brentwood,37027,Tennessee,South,2012-05-28,3,Development - Scala,Development,Tableau,Jacob Manziel,Frank Mitchell,57,1,0.715
1789,12804,2012-05-25,2012-05-01,50,7000,0.08,140,6440,Philip Ludtke,"Paychex, Inc.",Consumer Services,Diversified Commercial Services,Brentwood,37027,Tennessee,South,2012-05-27,2,Development - Database,Development,Market Research,Mia Moore,Frank Mitchell,51,1,0.635714286
1790,12804,2012-05-25,2012-05-01,34,6800,0.02,200,6664,Philip Ludtke,"Paychex, Inc.",Consumer Services,Diversified Commercial Services,Brentwood,37027,Tennessee,South,2012-05-27,2,Development - Big Data,Development,Development,Emily Taylor,Frank Mitchell,62,1,0.69
2418,17543,2012-05-25,2012-05-01,1,110,0.09,110,100.1,Tracy Hale,Check Point Software Technologies Ltd.,Technology,Computer Software: Prepackaged Software,Herndon,20170,Virginia,South,2012-05-25,0,Development - Python,Development,Big Data,Jacob Manziel,Frank Mitchell,57,1,0.481818182
2419,17543,2012-05-25,2012-05-01,35,3850,0.1,110,3465,Tracy Hale,Check Point Software Technologies Ltd.,Technology,Computer Software: Prepackaged Software,Herndon,20170,Virginia,South,2012-05-27,2,Development - Python,Development,Scala,Michael Alister,Frank Mitchell,68,1,0.381818182
2420,17543,2012-05-25,2012-05-01,26,3900,0.06,150,3666,Tracy Hale,Check Point Software Technologies Ltd.,Technology,Computer Software: Prepackaged Software,Herndon,20170,Virginia,South,2012-05-27,2,Consulting - Market Research,Consulting,.Net,Olivia Sullivan,Frank Mitchell,53,1,0.646666667
2834,20451,2012-05-25,2012-05-01,6,660,0.1,110,594,Bill Kiefer,"Stericycle, Inc.",Basic Industries,Environmental Services,Cuyahoga Falls,44221,Ohio,East,2012-05-27,2,Development - Python,Development,Strategy,Emily Taylor,Allen Young,62,1,0.436363636
2835,20451,2012-05-25,2012-05-01,33,6600,0.04,200,6336,Bill Kiefer,"Stericycle, Inc.",Basic Industries,Environmental Services,Dayton,45406,Ohio,East,2012-05-27,2,Development - Big Data,Development,Strategy,Abigail Young,Allen Young,50,1,0.75
2836,20451,2012-05-25,2012-05-01,17,2125,0.1,125,1912.5,Bill Kiefer,"Stericycle, Inc.",Basic Industries,Environmental Services,Dayton,45406,Ohio,East,2012-05-27,2,Training - Javascript,Training,Development,Olivia Sullivan,Allen Young,53,1,0.576
5194,36929,2012-05-25,2012-05-01,45,7650,0.04,170,7344,Amy Brennan,Cognizant Technology Solutions Corporation,Technology,EDP Services,Watauga,76148,Texas,Central,2012-05-25,0,Development - .Net,Development,Market Research,Madison Hill,Josh Martinez,58,1,0.658823529
5195,36929,2012-05-25,2012-05-01,37,7400,0,200,7400,Amy Brennan,Cognizant Technology Solutions Corporation,Technology,EDP Services,Watauga,76148,Texas,Central,2012-05-29,4,Development - Big Data,Development,Business Model,Abigail Young,Josh Martinez,50,1,0.75
1560,11269,2012-05-26,2012-05-01,39,5850,0.09,150,5323.5,Harold Rosenblatt,Apple Inc.,Technology,Computer Manufacturing,Lafayette,47905,Indiana,Central,2012-05-30,4,Consulting - Market Research,Consulting,Java,Liam Franklin,Josh Martinez,52,1,0.653333333
1561,11269,2012-05-26,2012-05-01,49,9800,0.04,200,9408,Harold Rosenblatt,Apple Inc.,Technology,Computer Manufacturing,Lawrence,46226,Indiana,Central,2012-06-02,7,Development - Scala,Development,Python,Olivia Sullivan,Josh Martinez,53,1,0.735
1562,11269,2012-05-26,2012-05-01,1,200,0.09,200,182,Harold Rosenblatt,Apple Inc.,Technology,Computer Manufacturing,Lawrence,46226,Indiana,Central,2012-06-02,7,Development - Big Data,Development,Business Logic,Madison Hill,Josh Martinez,58,1,0.71
3680,26336,2012-05-26,2012-05-01,39,5850,0.1,150,5265,Benjamin Reiten,Liberty Interactive Corporation,Consumer Services,Catalog/Specialty Distribution,Goodyear,85338,Arizona,West,2012-05-28,2,Consulting - Business Model,Consulting,Market Research,Olivia Sullivan,Bob Turner,53,1,0.646666667
3681,26336,2012-05-26,2012-05-01,45,9000,0.04,200,8640,Benjamin Reiten,Liberty Interactive Corporation,Consumer Services,Catalog/Specialty Distribution,Goodyear,85338,Arizona,West,2012-05-27,1,Development - Big Data,Development,.Net,Liam Franklin,Bob Turner,52,1,0.74
6323,44768,2012-05-26,2012-05-01,45,5625,0.02,125,5512.5,Mark Nockton,Monster Beverage Corporation,Consumer Non-Durables,Beverages (Production/Distribution),Sharon,16146,Pennsylvania,East,2012-05-27,1,Training - Development,Training,Database,Noah Smith,Allen Young,59,1,0.528
7748,55460,2012-05-26,2012-05-01,49,8330,0.06,170,7830.2,Patrick Fjeld,"Intuitive Surgical, Inc.",Health Care,Industrial Specialties,Prattville,36067,Alabama,South,2012-05-28,2,Development - .Net,Development,Front End Web,Michael Alister,Frank Mitchell,68,1,0.6
7749,55460,2012-05-26,2012-05-01,12,1920,0.1,160,1728,Patrick Fjeld,"Intuitive Surgical, Inc.",Health Care,Industrial Specialties,Prattville,36067,Alabama,South,2012-05-27,1,Development - Java,Development,Tableau,Ethan Bird,Frank Mitchell,60,1,0.625
8252,59015,2012-05-26,2012-05-01,32,4800,0.09,150,4368,Andrew Love,DISH Network Corporation,Consumer Services,Television Services,Saginaw,76131,Texas,Central,2012-05-27,1,Consulting - Business Model,Consulting,Market Research,Emily Taylor,Josh Martinez,62,1,0.586666667
8253,59015,2012-05-26,2012-05-01,32,4000,0.02,125,3920,Andrew Love,DISH Network Corporation,Consumer Services,Television Services,Saginaw,76131,Texas,Central,2012-05-27,1,Training - SQL,Training,Business Logic,Jayden Hamilton,Josh Martinez,71,1,0.432
8254,59015,2012-05-26,2012-05-01,32,3520,0.02,110,3449.6,Andrew Love,DISH Network Corporation,Consumer Services,Television Services,Saginaw,76131,Texas,Central,2012-05-28,2,Development - Python,Development,Market Research,William Bufont,Josh Martinez,62,1,0.436363636
538,3650,2012-05-27,2012-05-01,36,5760,0.04,160,5529.6,Denise Sievert,"Applied Materials, Inc.",Technology,Semiconductors,Apex,27502,North Carolina,South,2012-05-29,2,Development - Java,Development,Python,Daniel Tusk,Frank Mitchell,45,1,0.71875
539,3650,2012-05-27,2012-05-01,24,3000,0.03,125,2910,Denise Sievert,"Applied Materials, Inc.",Technology,Semiconductors,Apex,27502,North Carolina,South,2012-05-29,2,Training - Development,Training,SQL,Jacob Manziel,Frank Mitchell,57,1,0.544
2374,17216,2012-05-27,2012-05-01,7,875,0.05,125,831.25,Eric Dilbeck,Google Inc.,Technology,"Computer Software: Programming, Data Processing",Hopatcong,7843,New Jersey,East,2012-05-28,1,Training - Development,Training,Python,Elizabeth Carter,Allen Young,52,1,0.584
5766,40933,2012-05-27,2012-05-01,37,4440,0.06,120,4173.6,Jenna Nguyen,"Expeditors International of Washington, Inc.",Transportation,Oil Refining/Marketing,Klamath Falls,97601,Oregon,West,2012-05-28,1,Development - Business Logic,Development,Python,Liam Franklin,Bob Turner,52,1,0.566666667
3026,21763,2012-05-28,2012-05-01,22,3300,0.07,150,3069,Adrian Klamczynski,"Akamai Technologies, Inc.",Miscellaneous,Business Services,Gresham,97030,Oregon,West,2012-06-02,5,Consulting - Market Research,Consulting,Scala,Liam Franklin,Bob Turner,52,1,0.653333333
4887,34757,2012-05-28,2012-05-01,40,4400,0.1,110,3960,Neoma Roach,"Dollar Tree, Inc.",Consumer Services,Department/Specialty Retail Stores,Smyrna,30080,Georgia,South,2012-05-30,2,Development - Python,Development,Java,Olivia Sullivan,Frank Mitchell,53,1,0.518181818
6359,45125,2012-05-28,2012-05-01,6,750,0.09,125,682.5,Erin Cox,Liberty Global plc,Consumer Services,Television Services,Leander,78641,Texas,Central,2012-05-29,1,Training - Tableau,Training,Market Research,Mia Moore,Josh Martinez,51,1,0.592
6360,45125,2012-05-28,2012-05-01,32,4800,0,150,4800,Erin Cox,Liberty Global plc,Consumer Services,Television Services,Leander,78641,Texas,Central,2012-05-29,1,Consulting - Market Research,Consulting,Market Research,Ava Wilson,Josh Martinez,67,1,0.553333333
8379,59878,2012-05-28,2012-05-01,6,900,0.1,150,810,Ivan Bern,Cerner Corporation,Technology,EDP Services,Wentzville,63385,MO,Central,2012-05-29,1,Consulting - Strategy,Consulting,Python,Jacob Manziel,Josh Martinez,57,1,0.62
8380,59878,2012-05-28,2012-05-01,23,4600,0.08,200,4232,Ivan Bern,Cerner Corporation,Technology,EDP Services,Wentzville,63385,MO,Central,2012-05-29,1,Development - Big Data,Development,Strategy,Emma Watson,Josh Martinez,67,1,0.665
3267,23363,2012-05-29,2012-05-01,46,7360,0.02,160,7212.8,Robert Franz,"Analog Devices, Inc.",Technology,Semiconductors,Clarksville,37042,Tennessee,South,2012-06-05,7,Development - Java,Development,Business Logic,Jayden Hamilton,Frank Mitchell,71,1,0.55625
3593,25635,2012-05-29,2012-05-01,14,2380,0.04,170,2284.8,Sally Knudson,Comcast Corporation,Consumer Services,Television Services,Madison Heights,48071,Michigan,Central,2012-05-30,1,Development - .Net,Development,.Net,Mia Moore,Josh Martinez,51,1,0.7
3594,25635,2012-05-29,2012-05-01,22,2750,0.09,125,2502.5,Sally Knudson,Comcast Corporation,Consumer Services,Television Services,Midland,48640,Michigan,Central,2012-05-30,1,Training - SQL,Training,Java,Jacob Manziel,Josh Martinez,57,1,0.544
4102,29218,2012-05-29,2012-05-01,19,2375,0.04,125,2280,Andrew Love,DISH Network Corporation,Consumer Services,Television Services,Redmond,98052,Washington,West,2012-05-29,0,Training - SQL,Training,Java,Jayden Hamilton,Bob Turner,71,1,0.432
4103,29218,2012-05-29,2012-05-01,26,3120,0.04,120,2995.2,Andrew Love,DISH Network Corporation,Consumer Services,Television Services,Redmond,98052,Washington,West,2012-05-29,0,Development - Business Logic,Development,Strategy,Olivia Sullivan,Bob Turner,53,1,0.558333333
4104,29218,2012-05-29,2012-05-01,13,1950,0.02,150,1911,Andrew Love,DISH Network Corporation,Consumer Services,Television Services,Renton,98059,Washington,West,2012-05-31,2,Consulting - Market Research,Consulting,Development,Mason Gibson,Bob Turner,71,1,0.526666667
4107,29221,2012-05-29,2012-05-01,41,4510,0,110,4510,Jay O'Donnell,"Equinix, Inc.",Public Utilities,Telecommunications Equipment,Sacramento,95823,California,West,2012-06-01,3,Development - Python,Development,Big Data,Elizabeth Carter,Bob Turner,52,1,0.527272727
7948,56802,2012-05-29,2012-05-01,50,6000,0.09,120,5460,Thea Hughes,Vodafone Group Plc,Public Utilities,Telecommunications Equipment,Twentynine Palms,92277,California,West,2012-05-30,1,Development - Business Logic,Development,Big Data,William Bufont,Bob Turner,62,1,0.483333333
3810,27138,2012-05-30,2012-05-01,31,3875,0.07,125,3603.75,Cari Radford,Biogen Idec Inc.,Health Care,Biotechnology: Biological Products (No Diagnostic Substances),Provo,84604,Utah,West,2012-06-01,2,Training - Tableau,Training,Development,Jayden Hamilton,Bob Turner,71,1,0.432
3811,27138,2012-05-30,2012-05-01,37,5550,0.1,150,4995,Cari Radford,Biogen Idec Inc.,Health Care,Biotechnology: Biological Products (No Diagnostic Substances),Provo,84604,Utah,West,2012-06-01,2,Consulting - Market Research,Consulting,Compensation,Noah Smith,Bob Turner,59,1,0.606666667
5480,38914,2012-05-30,2012-05-01,43,5375,0.08,125,4945,Alyssa Clasen,"Cisco Systems, Inc.",Technology,Computer Communications Equipment,Lake Oswego,97035,Oregon,West,2012-05-31,1,Training - SQL,Training,Development,William Bufont,Bob Turner,62,1,0.504
5942,42177,2012-05-30,2012-05-01,49,7350,0.03,150,7129.5,Shahid Boyes,"Illumina, Inc.",Capital Goods,Biotechnology: Laboratory Analytical Instruments,Muskegon,49442,Michigan,Central,2012-05-31,1,Consulting - Market Research,Consulting,Business Model,Mia Moore,Josh Martinez,51,1,0.66
5943,42177,2012-05-30,2012-05-01,38,4750,0,125,4750,Shahid Boyes,"Illumina, Inc.",Capital Goods,Biotechnology: Laboratory Analytical Instruments,Novi,48375,Michigan,Central,2012-06-02,3,Training - SQL,Training,Java,Ethan Bird,Josh Martinez,60,1,0.52
7030,50181,2012-05-30,2012-05-01,2,250,0.04,125,240,Odella Tron,"Keurig Green Mountain, Inc.",Consumer Non-Durables,Packaged Foods,York,17403,Pennsylvania,East,2012-05-31,1,Training - Development,Training,Java,Noah Smith,Allen Young,59,1,0.528
193,1285,2012-05-31,2012-05-01,27,3375,0,125,3375,Sally Herrera,Costco Wholesale Corporation,Consumer Services,Department/Specialty Retail Stores,Mankato,56001,Minnesota,Central,2012-05-31,0,Training - Tableau,Training,Tableau,Mason Gibson,Josh Martinez,71,1,0.432
194,1285,2012-05-31,2012-05-01,8,1000,0.05,125,950,Sally Herrera,Costco Wholesale Corporation,Consumer Services,Department/Specialty Retail Stores,Mankato,56001,Minnesota,Central,2012-06-01,1,Training - Javascript,Training,Big Data,Elizabeth Carter,Josh Martinez,52,1,0.584
4640,33029,2012-05-31,2012-05-01,39,4875,0.02,125,4777.5,Scott Bell,"Fiserv, Inc.",Technology,EDP Services,Middle River,21220,Maryland,East,2012-06-02,2,Training - Javascript,Training,Market Research,Madison Hill,Allen Young,58,1,0.536
4641,33029,2012-05-31,2012-05-01,8,1200,0.1,150,1080,Scott Bell,"Fiserv, Inc.",Technology,EDP Services,Middle River,21220,Maryland,East,2012-06-01,1,Consulting - Market Research,Consulting,Java,Madison Hill,Allen Young,58,1,0.613333333
6662,47456,2012-05-31,2012-05-01,43,4730,0.08,110,4351.6,Brian Pardue,Apple Inc.,Technology,Computer Manufacturing,Ogden,84404,Utah,West,2012-06-07,7,Development - Python,Development,Python,Noah Smith,Bob Turner,59,1,0.463636364
6825,48614,2012-05-31,2012-05-01,46,6900,0.01,150,6831,Nathan Lee,Cognizant Technology Solutions Corporation,Technology,EDP Services,Lino Lakes,55014,Minnesota,Central,2012-05-31,0,Consulting - Market Research,Consulting,Business Logic,Emma Watson,Josh Martinez,67,1,0.553333333
6874,48993,2012-05-31,2012-05-01,17,1870,0.08,110,1720.4,Russell Folk,Check Point Software Technologies Ltd.,Technology,Computer Software: Prepackaged Software,Poinciana,34759,Florida,South,2012-05-31,0,Development - Python,Development,Business Model,William Bufont,Frank Mitchell,62,1,0.436363636
3342,23911,2012-06-01,2012-06-01,21,2625,0.1,125,2362.5,Christopher Zandusky,"Henry Schein, Inc.",Health Care,Medical Specialities,Tacoma,98408,Washington,West,2012-06-02,1,Training - Development,Training,SQL,Isabella Douglas,Bob Turner,75,1,0.4
3343,23911,2012-06-01,2012-06-01,19,2850,0.03,150,2764.5,Christopher Zandusky,"Henry Schein, Inc.",Health Care,Medical Specialities,Tacoma,98408,Washington,West,2012-06-02,1,Consulting - Business Model,Consulting,Business Logic,Elizabeth Carter,Bob Turner,52,1,0.653333333
3344,23911,2012-06-01,2012-06-01,3,330,0,110,330,Christopher Zandusky,"Henry Schein, Inc.",Health Care,Medical Specialities,Tacoma,98408,Washington,West,2012-06-02,1,Development - Python,Development,Market Research,Alexander Edison,Bob Turner,70,1,0.363636364
5177,36832,2012-06-01,2012-06-01,43,6880,0.09,160,6260.8,Bobby Radford,Texas Instruments Incorporated,Technology,Semiconductors,San Ramon,94583,California,West,2012-06-08,7,Development - Java,Development,Python,Olivia Sullivan,Bob Turner,53,1,0.66875
5178,36832,2012-06-01,2012-06-01,24,3600,0.06,150,3384,Bobby Radford,Texas Instruments Incorporated,Technology,Semiconductors,San Ramon,94583,California,West,2012-06-06,5,Consulting - Business Model,Consulting,.Net,Sophia Dixon,Bob Turner,71,1,0.526666667
7135,50883,2012-06-01,2012-06-01,35,4375,0.01,125,4331.25,Pauline Wardle,"Mattel, Inc.",Consumer Non-Durables,Recreational Products/Toys,Oklahoma City,73120,Oklahoma,Central,2012-06-01,0,Training - Development,Training,Market Research,Emily Taylor,Josh Martinez,62,1,0.504
7525,53762,2012-06-01,2012-06-01,28,5600,0.07,200,5208,Ivan Wooten,Check Point Software Technologies Ltd.,Technology,Computer Software: Prepackaged Software,La Quinta,92253,California,West,2012-06-02,1,Development - Scala,Development,Market Research,Liam Franklin,Bob Turner,52,1,0.74
163,1027,2012-06-02,2012-06-01,19,2375,0.04,125,2280,Hallie Fritzler,Yahoo! Inc.,Technology,EDP Services,Coos Bay,97420,Oregon,West,2012-06-04,2,Training - Tableau,Training,Python,Jayden Hamilton,Bob Turner,71,1,0.432
466,3172,2012-06-02,2012-06-01,33,4950,0.05,150,4702.5,Annie Martin,Google Inc.,Technology,"Computer Software: Programming, Data Processing",Logan,84321,Utah,West,2012-06-04,2,Consulting - Market Research,Consulting,Python,Noah Smith,Bob Turner,59,1,0.606666667
541,3654,2012-06-02,2012-06-01,41,5125,0,125,5125,Karl Webber,Western Digital Corporation,Technology,Electronic Components,Carlsbad,92008,California,West,2012-06-07,5,Training - SQL,Training,Business Model,Jayden Hamilton,Bob Turner,71,1,0.432
542,3654,2012-06-02,2012-06-01,39,5850,0.03,150,5674.5,Karl Webber,Western Digital Corporation,Technology,Electronic Components,Dracut,1826,MA,East,2012-06-07,5,Consulting - Strategy,Consulting,Python,Mia Moore,Allen Young,51,1,0.66
543,3654,2012-06-02,2012-06-01,47,7990,0.1,170,7191,Karl Webber,Western Digital Corporation,Technology,Electronic Components,Quincy,2169,MA,East,2012-06-02,0,Development - .Net,Development,Market Research,Jacob Manziel,Allen Young,57,1,0.664705882
1238,9024,2012-06-02,2012-06-01,2,220,0.03,110,213.4,Katherine Ballard,Yahoo! Inc.,Technology,EDP Services,Bedford,3110,New Hampshire,East,2012-06-03,1,Development - Python,Development,Big Data,Ethan Bird,Allen Young,60,1,0.454545455
1239,9024,2012-06-02,2012-06-01,44,6600,0.07,150,6138,Katherine Ballard,Yahoo! Inc.,Technology,EDP Services,Grafton,1519,MA,East,2012-06-02,0,Consulting - Market Research,Consulting,Big Data,Jayden Hamilton,Allen Young,71,1,0.526666667
1240,9024,2012-06-02,2012-06-01,30,4500,0.09,150,4095,Katherine Ballard,Yahoo! Inc.,Technology,EDP Services,Roselle,7203,New Jersey,East,2012-06-04,2,Consulting - Business Model,Consulting,Business Model,Madison Hill,Allen Young,58,1,0.613333333
1711,12292,2012-06-02,2012-06-01,32,4800,0.1,150,4320,Ken Odegard,Broadcom Corporation,Technology,Semiconductors,University City,63130,MO,Central,2012-06-02,0,Consulting - Business Model,Consulting,Strategy,Olivia Sullivan,Josh Martinez,53,1,0.646666667
2722,19652,2012-06-02,2012-06-01,28,3500,0.01,125,3465,Tamara Tyler,"TripAdvisor, Inc.",Technology,"Computer Software: Programming, Data Processing",Post Falls,83854,Idaho,West,2012-06-03,1,Training - Development,Training,Python,Michael Alister,Bob Turner,68,1,0.456
2723,19652,2012-06-02,2012-06-01,34,5100,0.05,150,4845,Tamara Tyler,"TripAdvisor, Inc.",Technology,"Computer Software: Programming, Data Processing",Post Falls,83854,Idaho,West,2012-06-04,2,Consulting - Market Research,Consulting,Java,Emma Watson,Bob Turner,67,1,0.553333333
6475,46055,2012-06-02,2012-06-01,25,3750,0.04,150,3600,Marc Ludwig,Liberty Global plc,Consumer Services,Television Services,West Memphis,72301,Arkansas,South,2012-06-04,2,Consulting - Business Model,Consulting,Javascript,Mia Moore,Frank Mitchell,51,1,0.66
6315,44679,2012-06-03,2012-06-01,22,3520,0.07,160,3273.6,Debra Andreadi,"Autodesk, Inc.",Technology,Computer Software: Prepackaged Software,Oxnard,93030,California,West,2012-06-04,1,Development - Java,Development,.Net,Olivia Sullivan,Bob Turner,53,1,0.66875
6316,44679,2012-06-03,2012-06-01,35,4375,0.08,125,4025,Debra Andreadi,"Autodesk, Inc.",Technology,Computer Software: Prepackaged Software,Oxnard,93030,California,West,2012-06-05,2,Training - SQL,Training,Development,Alexander Edison,Bob Turner,70,1,0.44
3331,23809,2012-06-04,2012-06-01,7,1120,0.1,160,1008,Nora Stevenson,"Gilead Sciences, Inc.",Health Care,Biotechnology: Biological Products (No Diagnostic Substances),Springfield,22153,Virginia,South,2012-06-06,2,Development - Java,Development,Development,Noah Smith,Frank Mitchell,59,1,0.63125
4886,34754,2012-06-04,2012-06-01,16,1760,0.03,110,1707.2,Patrick Fjeld,"Intuitive Surgical, Inc.",Health Care,Industrial Specialties,Phenix City,36869,Alabama,South,2012-06-06,2,Development - Python,Development,Java,Mason Gibson,Frank Mitchell,71,1,0.354545455
5096,36354,2012-06-05,2012-06-01,13,2210,0.07,170,2055.3,Henia Norvell,"Amazon.com, Inc.",Consumer Services,Catalog/Specialty Distribution,Coral Springs,33065,Florida,South,2012-06-07,2,Development - .Net,Development,Business Logic,Mason Gibson,Frank Mitchell,71,1,0.582352941
5245,37315,2012-06-05,2012-06-01,43,4730,0.1,110,4257,Luke Ballentine,Intuit Inc.,Technology,Computer Software: Prepackaged Software,Des Moines,50315,Iowa,Central,2012-06-12,7,Development - Python,Development,Business Logic,Daniel Tusk,Josh Martinez,45,1,0.590909091
5246,37315,2012-06-05,2012-06-01,31,4650,0.05,150,4417.5,Luke Ballentine,Intuit Inc.,Technology,Computer Software: Prepackaged Software,Des Moines,50315,Iowa,Central,2012-06-12,7,Consulting - Market Research,Consulting,.Net,Daniel Tusk,Josh Martinez,45,1,0.7
7952,56805,2012-06-05,2012-06-01,38,7600,0.01,200,7524,Craig Braden,NVIDIA Corporation,Technology,Semiconductors,Oak Ridge,37830,Tennessee,South,2012-06-06,1,Development - Big Data,Development,Business Model,Olivia Sullivan,Frank Mitchell,53,1,0.735
2161,15591,2012-06-06,2012-06-01,31,3875,0,125,3875,Brad Jacobs,Viacom Inc.,Consumer Services,Television Services,Tinley Park,60477,Illinois,Central,2012-06-08,2,Training - SQL,Training,Strategy,Daniel Tusk,Josh Martinez,45,1,0.64
3421,24390,2012-06-06,2012-06-01,2,300,0.1,150,270,Katherine Sewall,"American Airlines Group, Inc.",Transportation,Air Freight/Delivery Services,Lancaster,43130,Ohio,East,2012-06-08,2,Consulting - Business Model,Consulting,Development,Michael Alister,Allen Young,68,1,0.546666667
5304,37762,2012-06-06,2012-06-01,20,2200,0.02,110,2156,Anemone Joy,eBay Inc.,Miscellaneous,Business Services,Colonial Heights,23834,Virginia,South,2012-06-07,1,Development - Python,Development,Scala,Mia Moore,Frank Mitchell,51,1,0.536363636
299,2054,2012-06-07,2012-06-01,1,170,0.09,170,154.7,Katrina Radford,"Analog Devices, Inc.",Technology,Semiconductors,Reston,20190,Virginia,South,2012-06-10,3,Development - .Net,Development,Compensation,Mason Gibson,Frank Mitchell,71,1,0.582352941
300,2054,2012-06-07,2012-06-01,34,4250,0.03,125,4122.5,Katrina Radford,"Analog Devices, Inc.",Technology,Semiconductors,Reston,20190,Virginia,South,2012-06-09,2,Training - SQL,Training,Development,Alexander Edison,Frank Mitchell,70,1,0.44
1297,9505,2012-06-07,2012-06-01,2,300,0.03,150,291,Maribeth Venier,Lam Research Corporation,Technology,Industrial Machinery/Components,Durango,81301,Colorado,West,2012-06-09,2,Consulting - Business Model,Consulting,Java,Jacob Manziel,Bob Turner,57,1,0.62
1298,9505,2012-06-07,2012-06-01,5,750,0.1,150,675,Maribeth Venier,Lam Research Corporation,Technology,Industrial Machinery/Components,Durango,81301,Colorado,West,2012-06-10,3,Consulting - Business Model,Consulting,Java,Olivia Sullivan,Bob Turner,53,1,0.646666667
2914,21028,2012-06-07,2012-06-01,38,4180,0.04,110,4012.8,Gary Kunitz,"Ross Stores, Inc.",Consumer Services,Clothing/Shoe/Accessory Stores,Weatherford,76086,Texas,Central,2012-06-09,2,Development - PHP,Development,Tableau,Daniel Tusk,Josh Martinez,45,1,0.590909091
5646,39943,2012-06-07,2012-06-01,16,2400,0.02,150,2352,Rick Book,Western Digital Corporation,Technology,Electronic Components,Bismarck,58501,North Dakota,Central,2012-06-08,1,Consulting - Business Model,Consulting,Market Research,Olivia Sullivan,Josh Martinez,53,1,0.646666667
5647,39943,2012-06-07,2012-06-01,12,1800,0.09,150,1638,Rick Book,Western Digital Corporation,Technology,Electronic Components,Bismarck,58501,North Dakota,Central,2012-06-09,2,Consulting - Market Research,Consulting,Development,Ethan Bird,Josh Martinez,60,1,0.6
7023,50144,2012-06-07,2012-06-01,36,5760,0.1,160,5184,Michael Olson,Viacom Inc.,Consumer Services,Television Services,Greensburg,15601,Pennsylvania,East,2012-06-07,0,Development - Java,Development,Strategy,Olivia Sullivan,Allen Young,53,1,0.66875
134,868,2012-06-08,2012-06-01,32,5440,0,170,5440,Carlos Kampe,Check Point Software Technologies Ltd.,Technology,Computer Software: Prepackaged Software,Park Ridge,60068,Illinois,Central,2012-06-09,1,Development - .Net,Development,SQL,Daniel Tusk,Josh Martinez,45,1,0.735294118
135,868,2012-06-08,2012-06-01,31,4650,0.04,150,4464,Carlos Kampe,Check Point Software Technologies Ltd.,Technology,Computer Software: Prepackaged Software,Park Ridge,60068,Illinois,Central,2012-06-10,2,Consulting - Business Model,Consulting,Java,Noah Smith,Josh Martinez,59,1,0.606666667
2752,19874,2012-06-08,2012-06-01,31,6200,0,200,6200,Mathew McNair,"O'Reilly Automotive, Inc.",Consumer Services,Other Specialty Stores,Jamestown,14701,New York,East,2012-06-09,1,Development - Big Data,Development,Business Logic,Mia Moore,Allen Young,51,1,0.745
4199,29856,2012-06-08,2012-06-01,24,2640,0.04,110,2534.4,Lisa Ann Reed,"Expeditors International of Washington, Inc.",Transportation,Oil Refining/Marketing,Brookings,57006,South Dakota,Central,2012-06-11,3,Development - Python,Development,Python,Ethan Bird,Josh Martinez,60,1,0.454545455
4918,35012,2012-06-08,2012-06-01,10,1700,0.04,170,1632,Thomas Weimer,"Wynn Resorts, Limited",Consumer Services,Hotels/Resorts,Stevens Point,54481,Wisconsin,Central,2012-06-08,0,Development - .Net,Development,SQL,Madison Hill,Josh Martinez,58,1,0.658823529
4919,35012,2012-06-08,2012-06-01,11,1650,0.08,150,1518,Thomas Weimer,"Wynn Resorts, Limited",Consumer Services,Hotels/Resorts,Sun Prairie,53590,Wisconsin,Central,2012-06-09,1,Consulting - Market Research,Consulting,Java,Jacob Manziel,Josh Martinez,57,1,0.62
5602,39686,2012-06-08,2012-06-01,2,340,0.06,170,319.6,Philip Ludtke,"Paychex, Inc.",Consumer Services,Diversified Commercial Services,Clarksburg,26301,West Virginia,East,2012-06-09,1,Development - .Net,Development,PHP,Madison Hill,Allen Young,58,1,0.658823529
5603,39686,2012-06-08,2012-06-01,48,7200,0,150,7200,Philip Ludtke,"Paychex, Inc.",Consumer Services,Diversified Commercial Services,Clarksburg,26301,West Virginia,East,2012-06-09,1,Consulting - Market Research,Consulting,Market Research,Olivia Sullivan,Allen Young,53,1,0.646666667
7743,55431,2012-06-08,2012-06-01,13,2210,0.03,170,2143.7,Kean Collister,"Akamai Technologies, Inc.",Miscellaneous,Business Services,Bennington,5201,Vermont,East,2012-06-09,1,Development - .Net,Development,Business Model,Olivia Sullivan,Allen Young,53,1,0.688235294
7744,55431,2012-06-08,2012-06-01,39,4680,0.1,120,4212,Kean Collister,"Akamai Technologies, Inc.",Miscellaneous,Business Services,Paradise,95969,California,West,2012-06-09,1,Development - Business Logic,Development,Python,Alexander Edison,Bob Turner,70,1,0.416666667
6423,45664,2012-06-09,2012-06-01,24,3000,0.09,125,2730,Karen Jacobs,VimpelCom Ltd.,Public Utilities,Telecommunications Equipment,San Gabriel,91776,California,West,2012-06-10,1,Training - SQL,Training,SQL,William Bufont,Bob Turner,62,1,0.504
5467,38851,2012-06-10,2012-06-01,1,160,0.06,160,150.4,Brad Fisher,Vodafone Group Plc,Public Utilities,Telecommunications Equipment,Westbrook,4092,Maine,East,2012-06-11,1,Development - Java,Development,Market Research,Olivia Sullivan,Allen Young,53,1,0.66875
5645,39938,2012-06-10,2012-06-01,5,600,0.1,120,540,Cindy Mathis,Liberty Global plc,Consumer Services,Television Services,Phoenix,85023,Arizona,West,2012-06-11,1,Development - Business Logic,Development,Market Research,Madison Hill,Bob Turner,58,1,0.516666667
6051,42887,2012-06-10,2012-06-01,3,330,0.01,110,326.7,Tracy Hale,Check Point Software Technologies Ltd.,Technology,Computer Software: Prepackaged Software,Kissimmee,34741,Florida,South,2012-06-11,1,Development - PHP,Development,Java,Jacob Manziel,Frank Mitchell,57,1,0.481818182
6052,42887,2012-06-10,2012-06-01,11,1320,0.04,120,1267.2,Tracy Hale,Check Point Software Technologies Ltd.,Technology,Computer Software: Prepackaged Software,Kissimmee,34741,Florida,South,2012-06-12,2,Development - Business Logic,Development,SQL,Olivia Sullivan,Frank Mitchell,53,1,0.558333333
6053,42887,2012-06-10,2012-06-01,3,375,0.01,125,371.25,Tracy Hale,Check Point Software Technologies Ltd.,Technology,Computer Software: Prepackaged Software,Kissimmee,34741,Florida,South,2012-06-12,2,Training - Javascript,Training,SQL,Alexander Edison,Frank Mitchell,70,1,0.44
6188,43874,2012-06-10,2012-06-01,46,5520,0.09,120,5023.2,Mick Hopkins,Altera Corporation,Technology,Semiconductors,Medina,44256,Ohio,East,2012-06-11,1,Development - Business Logic,Development,Market Research,Elizabeth Carter,Allen Young,52,1,0.566666667
1752,12551,2012-06-11,2012-06-01,46,6900,0.01,150,6831,George Barnes,Sirius XM Holdings Inc.,Consumer Services,Broadcasting,Lubbock,79424,Texas,Central,2012-06-18,7,Consulting - Market Research,Consulting,Python,Abigail Young,Josh Martinez,50,1,0.666666667
4056,28901,2012-06-11,2012-06-01,23,2530,0.1,110,2277,Trudy Kennedy,Cognizant Technology Solutions Corporation,Technology,EDP Services,Redford,48239,Michigan,Central,2012-06-12,1,Development - Python,Development,Python,Emily Taylor,Josh Martinez,62,1,0.436363636
6137,43460,2012-06-11,2012-06-01,2,320,0.07,160,297.6,Astrea Meade,Liberty Interactive Corporation,Consumer Services,Catalog/Specialty Distribution,Willimantic,6226,Connecticut,East,2012-06-12,1,Development - Java,Development,Python,Abigail Young,Allen Young,50,1,0.6875
6330,44839,2012-06-11,2012-06-01,27,3375,0.09,125,3071.25,Julia Meador,Sigma-Aldrich Corporation,Consumer Durables,Specialty Chemicals,Galesburg,61401,Illinois,Central,2012-06-13,2,Training - SQL,Training,Strategy,Mia Moore,Josh Martinez,51,1,0.592
7143,50977,2012-06-11,2012-06-01,1,110,0.05,110,104.5,Thomas Ferrer,"American Airlines Group, Inc.",Transportation,Air Freight/Delivery Services,Eureka,95501,California,West,2012-06-11,0,Development - Python,Development,SQL,Elizabeth Carter,Bob Turner,52,1,0.527272727
8204,58658,2012-06-11,2012-06-01,7,875,0.09,125,796.25,Julia Hwang,Starbucks Corporation,Consumer Services,Restaurants,Billings,59102,Montana,West,2012-06-12,1,Training - Tableau,Training,PHP,Noah Smith,Bob Turner,59,1,0.528
8205,58658,2012-06-11,2012-06-01,41,6150,0.01,150,6088.5,Julia Hwang,Starbucks Corporation,Consumer Services,Restaurants,Billings,59102,Montana,West,2012-06-12,1,Consulting - Business Model,Consulting,Python,Jayden Hamilton,Bob Turner,71,1,0.526666667
8206,58658,2012-06-11,2012-06-01,46,6900,0.1,150,6210,Julia Hwang,Starbucks Corporation,Consumer Services,Restaurants,Billings,59102,Montana,West,2012-06-13,2,Consulting - Market Research,Consulting,Big Data,Ava Wilson,Bob Turner,67,1,0.553333333
911,6535,2012-06-12,2012-06-01,11,1320,0.07,120,1227.6,Adrian Ferguson,Altera Corporation,Technology,Semiconductors,Alton,62002,Illinois,Central,2012-06-15,3,Development - Business Logic,Development,Java,Michael Alister,Josh Martinez,68,1,0.433333333
1500,10823,2012-06-12,2012-06-01,3,480,0.03,160,465.6,Helen Kimmel,Amgen Inc.,Health Care,Biotechnology: Biological Products (No Diagnostic Substances),Dundalk,21222,Maryland,East,2012-06-12,0,Development - Java,Development,SQL,Ava Wilson,Allen Young,67,1,0.58125
2411,17507,2012-06-12,2012-06-01,27,4590,0.04,170,4406.4,Lela Demir,"Citrix Systems, Inc.",Technology,Computer Software: Prepackaged Software,Southgate,48195,Michigan,Central,2012-06-12,0,Development - .Net,Development,Development,William Bufont,Josh Martinez,62,1,0.635294118
2412,17507,2012-06-12,2012-06-01,22,3300,0.1,150,2970,Lela Demir,"Citrix Systems, Inc.",Technology,Computer Software: Prepackaged Software,Sterling Heights,48310,Michigan,Central,2012-06-14,2,Consulting - Strategy,Consulting,Business Logic,Daniel Tusk,Josh Martinez,45,1,0.7
3667,26274,2012-06-12,2012-06-01,41,4510,0.06,110,4239.4,Alan Brumley,Bed Bath & Beyond Inc.,Consumer Services,Home Furnishings,Murrieta,92563,California,West,2012-06-13,1,Development - Python,Development,Javascript,Elizabeth Carter,Bob Turner,52,1,0.527272727
3759,26853,2012-06-12,2012-06-01,21,2310,0,110,2310,Russell Redmond,Cerner Corporation,Technology,EDP Services,La Vista,68128,Nebraska,Central,2012-06-16,4,Development - PHP,Development,Java,Emily Taylor,Josh Martinez,62,1,0.436363636
1305,9573,2012-06-13,2012-06-01,41,5740,0,140,5740,Emily Kriz,"Gilead Sciences, Inc.",Health Care,Biotechnology: Biological Products (No Diagnostic Substances),Prairie Village,66202,Kansas,Central,2012-06-14,1,Development - Front End Web,Development,Python,William Bufont,Josh Martinez,62,1,0.557142857
1306,9573,2012-06-13,2012-06-01,21,2310,0.01,110,2286.9,Emily Kriz,"Gilead Sciences, Inc.",Health Care,Biotechnology: Biological Products (No Diagnostic Substances),Spanish Fork,84660,Utah,West,2012-06-14,1,Development - Python,Development,.Net,Ava Wilson,Bob Turner,67,1,0.390909091
6183,43815,2012-06-13,2012-06-01,40,6400,0.07,160,5952,Corey Patt,"Mondelez International, Inc.",Consumer Non-Durables,Packaged Foods,Oceanside,92054,California,West,2012-06-14,1,Development - Java,Development,Java,Sophia Dixon,Bob Turner,71,1,0.55625
6184,43815,2012-06-13,2012-06-01,22,2420,0.01,110,2395.8,Corey Patt,"Mondelez International, Inc.",Consumer Non-Durables,Packaged Foods,Oceanside,92054,California,West,2012-06-14,1,Development - Python,Development,SQL,Jayden Hamilton,Bob Turner,71,1,0.354545455
6185,43815,2012-06-13,2012-06-01,45,9000,0.03,200,8730,Corey Patt,"Mondelez International, Inc.",Consumer Non-Durables,Packaged Foods,Oceanside,92054,California,West,2012-06-14,1,Development - Big Data,Development,Strategy,Isabella Douglas,Bob Turner,75,1,0.625
6859,48868,2012-06-13,2012-06-01,47,9400,0.05,200,8930,Paul Grace,Liberty Interactive Corporation,Consumer Services,Catalog/Specialty Distribution,Wilmington,28403,North Carolina,South,2012-06-15,2,Development - Big Data,Development,Big Data,Jacob Manziel,Frank Mitchell,57,1,0.715
6860,48868,2012-06-13,2012-06-01,43,6450,0.07,150,5998.5,Paul Grace,Liberty Interactive Corporation,Consumer Services,Catalog/Specialty Distribution,Wilmington,28403,North Carolina,South,2012-06-14,1,Consulting - Market Research,Consulting,PHP,Noah Smith,Frank Mitchell,59,1,0.606666667
1996,14241,2012-06-14,2012-06-01,22,2640,0.03,120,2560.8,MaryBeth McCrossin,NXP Semiconductors N.V.,Technology,Semiconductors,Mooresville,28115,North Carolina,South,2012-06-15,1,Development - Business Logic,Development,Business Logic,Olivia Sullivan,Frank Mitchell,53,1,0.558333333
4055,28899,2012-06-14,2012-06-01,27,4050,0.06,150,3807,Janet Huthwaite,"Citrix Systems, Inc.",Technology,Computer Software: Prepackaged Software,Fort Bragg,28307,North Carolina,South,2012-06-16,2,Consulting - Market Research,Consulting,Python,Daniel Tusk,Frank Mitchell,45,1,0.7
6077,43045,2012-06-14,2012-06-01,47,5875,0.01,125,5816.25,Neil Gilcrest,"Discovery Communications, Inc.",Consumer Services,Television Services,Thomasville,27360,North Carolina,South,2012-06-16,2,Training - SQL,Training,Python,Jayden Hamilton,Frank Mitchell,71,1,0.432
6078,43045,2012-06-14,2012-06-01,12,1500,0.05,125,1425,Neil Gilcrest,"Discovery Communications, Inc.",Consumer Services,Television Services,Thomasville,27360,North Carolina,South,2012-06-14,0,Training - Javascript,Training,Database,Alexander Edison,Frank Mitchell,70,1,0.44
865,6183,2012-06-15,2012-06-01,41,4510,0.02,110,4419.8,Ionia Barroso,CA Inc.,Technology,Computer Software: Prepackaged Software,Birmingham,35211,Alabama,South,2012-06-16,1,Development - Python,Development,Java,Ethan Bird,Frank Mitchell,60,1,0.454545455
1862,13383,2012-06-15,2012-06-01,35,7000,0.07,200,6510,Duane Kennedy,"Discovery Communications, Inc.",Consumer Services,Television Services,Lancaster,75146,Texas,Central,2012-06-17,2,Development - Big Data,Development,Python,Abigail Young,Josh Martinez,50,1,0.75
2344,16897,2012-06-15,2012-06-01,1,125,0.02,125,122.5,Sally Price,Comcast Corporation,Consumer Services,Television Services,North Ridgeville,44039,Ohio,East,2012-06-17,2,Training - Development,Training,Python,Mia Moore,Allen Young,51,1,0.592