-
Notifications
You must be signed in to change notification settings - Fork 0
/
control.json
2509 lines (2509 loc) · 250 KB
/
control.json
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
{
"thread1": [
{
"conflict": "yes",
"professional": "no",
"tone": "stern"
},
{
"Timestamp": "Fri, 26 Oct 2001 07:29:03 -0700 (PDT)",
"Sender": "[email protected]",
"Recipient": "k",
"Subject": "Bishops Corner",
"Text": "Phillip & KeithAttached is the first draw request, I will need some of these funds immediately. I think checks out of Bishops Corner, L.P. may be the easiest, or you can wire money to me and I can write the checks when needed. Please let me know how you wish to handle this and I will proceed.Additionally, it is getting close to closing. I will need to get contracts signed at this point as soon as possible. We can handle this in two ways. I prefer that you elect me as a Vice - President of the General Partner and then I will sign all documents, or I can Federal Express contracts (this is more difficult).I have a funeral at 10:00 and I will be back about 1:00. I look forward to hearing from you.Greg - Draw # 1 - 10.25.01.xls ",
"Conflict": true,
"Professional": false,
"Tone": true,
"Conflict Words %": 0.1388888888888889,
"Friendly Words %": 0.11805555555555555,
"Sentiment": 0.29375,
"Subject Sentiment": 0.0,
"Punctuation %": 0.0380952380952381
},
{
"Timestamp": "Sat, 29 Dec 2001 15:02:59 -0800 (PST)",
"Sender": "[email protected]",
"Recipient": "pallen70@hotmail",
"Subject": "Bishops Corner",
"Text": "Phillip;Could you please e-mail me the draw file you created for Bishops Corner. Iwas working on submitting it to you and rather then recreate it I shouldjust have you send it back to me to fill in the new draw totals.Also, I need the vendor payee list that you created for the Land and Softcosts. I need to re-format it by draw number and to the Bank One format, andagain it would be easier to get it from you then to re-create it.Please take a look at the following summary and compare to your numbers tosee if you agree.\t\t\t\t\tLand And Soft Costs \t- \tInitial Draw\t$\t 1,608,683.05\t\t\t\t\tGalaxy\t\t\t-\tDraw # 1\t$\t 250,000.00\t\t\t\t\tGalaxy\t\t\t-\tDraw # 2\t$\t 223,259.09\t\t\t\t\t\tTotal Paid To Date Cash\t\t$\t 2,081,942.14\t\t\t\t\tProject Cost\t\t\t\t\t$\t10,740,980.87\t\t\t\t\tLoan Amount\t\t\t\t\t$\t 8,055,736.65\t\t\t\t\tEquity Required\t\t\t\t$\t 2,685,244.22\t\t\t\t\tDeveloper Profit\t\t\t\t\t$\t ( 326,202.57)\t\t\t\t\t\tBalance Of Funding\t\t\t$\t 2,359,041.65\t\t\t\t\t\tTotal Paid To Date\t\t\t$\t 2,081,942.14\t\t\t\t\t\tBalance To Fund Cash\t\t\t$\t 277,099.51\t\t\t\t\tGalaxy\t\t\t-\tDraw # 3\t$\t 467,566.66\t\t\t\t\t\tBank One Draw # 1\t\t\t$\t 190,467.15\t\t\t\t\t\tFinal Cash Funding\t\t\t$\t 277,099.51I think you thought you had more to fund. However, I do not see that youaccounted for the cash portion of the Developer fee that you paid CIS. Am Ilooking at this right? Please let me know and attach? the files discussedabove. I am working all day Monday so I hope I can get it before then ifpossible.Thanks A LotGreg Thorse",
"Conflict": true,
"Professional": false,
"Tone": true,
"Conflict Words %": 0.21074380165289255,
"Friendly Words %": 0.12396694214876033,
"Sentiment": 0.1512987012987013,
"Subject Sentiment": 0.0,
"Punctuation %": 0.05281207133058985
}
],
"thread2": [
{
"conflict": "no",
"professional": "yes",
"tone": "stern"
},
{
"Timestamp": "Mon, 29 Oct 2001 08:38:37 -0800 (PST)",
"Sender": "[email protected]",
"Recipient": "pallen@enron",
"Subject": "Risk Management Simulation Meeting 10/30/01",
"Text": "Hi Phillip,This message is to confirm our meeting with you on, Tuesday, October 30thfrom 9:00 am - 10:00 am, the location will be EB 3267. Attendees will beMonica Brown and Sheri Righi.Let me know if you have any questions. I can be reached at 713-345-6687.Thanks,Monica L. BrownAccentureHouston - 2929 Allen ParkwayThis message is for the designated recipient only and may containprivileged or confidential information. If you have received it in error,please notify the sender immediately and delete the original. Any otheruse of the email by you is prohibited.",
"Conflict": false,
"Professional": true,
"Tone": true,
"Conflict Words %": 0.13043478260869565,
"Friendly Words %": 0.09782608695652174,
"Sentiment": 0.375,
"Subject Sentiment": 0.0,
"Punctuation %": 0.03527336860670194
},
{
"Timestamp": "Mon, 29 Oct 2001 09:16:09 -0800 (PST)",
"Sender": "[email protected]",
"Recipient": "k",
"Subject": "Risk Management Simulation Meeting 10/30/01",
"Text": "Sheri and I would like to discuss the practice questions and graphic ideaswith you for the the Knowledge System. We wanted to get some feedback fromyou as well as your input.Thanks,Monica [email protected] cc: 10/30/01Please send more details regarding this meeting -----Original Message----- Hi Phillip, This message is to confirm our meeting with you on, Tuesday, October 30th from 9:00 am - 10:00 am, the location will be EB 3267. Attendees will be Monica Brown and Sheri Righi. Let me know if you have any questions. I can be reached at 713-345-6687. Thanks, Monica L. Brown Accenture Houston - 2929 Allen Parkway This message is for the designated recipient only and may contain privileged or confidential information. If you have received it in error, please notify the sender immediately and delete the original. Any other use of the email by you is prohibited.**********************************************************************This e-mail is the property of Enron Corp. and/or its relevant affiliateand may contain confidential and privileged material for the sole use ofthe intended recipient (s). Any review, use, distribution or disclosure byothers is strictly prohibited. If you are not the intended recipient (orauthorized to receive for the recipient), please contact the sender orreply to Enron Corp. at [email protected] and deleteall copies of the message. This e-mail (and any attachments hereto) are notintended to be an offer (or an acceptance) and do not create or evidence abinding and enforceable contract between Enron Corp. (or any of itsaffiliates) and the intended recipient or any other party, and may not berelied on by anyone as the basis of a contract by estoppel or otherwise.Thank you.**********************************************************************This message is for the designated recipient only and may containprivileged or confidential information. If you have received it in error,please notify the sender immediately and delete the original. Any otheruse of the email by you is prohibited.",
"Conflict": false,
"Professional": true,
"Tone": true,
"Conflict Words %": 0.4083333333333333,
"Friendly Words %": 0.05625,
"Sentiment": 0.1767857142857143,
"Subject Sentiment": 0.0,
"Punctuation %": 0.09483526268922529
}
],
"thread1328": [
{
"conflict": "yes",
"professional": "no",
"tone": "relaxed"
},
{
"Timestamp": "Fri, 26 Oct 2001 17:26:03 -0700 (PDT)",
"Sender": "[email protected]",
"Recipient": "keith",
"Subject": "London",
"Text": "jesus keith..anger management...u take things way tooserious--- ",
"Conflict": true,
"Professional": false,
"Tone": false,
"Conflict Words %": 0.125,
"Friendly Words %": 0.0,
"Subject Sentiment": 0.0,
"Punctuation %": 0.125
},
{
"Timestamp": "Mon, 22 Oct 2001 01:20:51 -0700 (PDT)",
"Sender": "[email protected]",
"Recipient": "keith",
"Subject": "London",
"Text": "Morning sunshine..all is well here in London...doingalot of looking around and am totally overwhelmed withthe sense of world history with each step taken andeach sight seen...looked at 16 flats to try and find aplace to live on friday, only one is a real candidatewith possibly one other..will know more today on thatfront...you need to do one thing when you pack foryour trip to London.BRING YOUR WALLET. ive lived inchicago, miami, houston, kansas city, seattle andspent alot of time in both san fran and las vegas..imhere to tell you no TWO of those cities combined areas expensive as London standing alone..its unreal!!!It seems to me we might have a shot at closing on thatfriday Nov.2...give me a few more days to get thingscleared up and Ill let you know...if your dying tohear my sexy voice u can dial direct just as you readit..011447786844020..it is my new mobile phone..hopeall is well..S__________________________________________________Do You Yahoo!?Make a great connection at Yahoo! Personals.http://personals.yahoo.com",
"Conflict": true,
"Professional": false,
"Tone": false,
"Conflict Words %": 0.05063291139240506,
"Friendly Words %": 0.12658227848101267,
"Sentiment": 0.11330492424242425,
"Subject Sentiment": 0.0,
"Punctuation %": 0.097678916827853
},
{
"Timestamp": "Mon, 22 Oct 2001 06:15:06 -0700 (PDT)",
"Sender": "[email protected]",
"Recipient": "sahamrx@yahoo",
"Subject": "London",
"Text": "Thanks for the e-mail. I'm excited to come visit in Nov. However, this \"bring your wallet\" idea doesn't fit well with my new \"I'm a cheap-skate mode\". Oh well, what's a few bucks...money well spent to hang with a good buddy London.Nov 2, or Nov 5 work fine, its upto you. Well I've got to cut this short, Calpine is out banging on some N-M.CheersKH ",
"Conflict": true,
"Professional": false,
"Tone": false,
"Conflict Words %": 0.08695652173913043,
"Friendly Words %": 0.2028985507246377,
"Sentiment": 0.2618371212121212,
"Subject Sentiment": 0.0,
"Punctuation %": 0.07386363636363637
},
{
"Sender": "scott halperin [mailto:[email protected]]",
"Recipient": "Holst, Keith",
"Subject": "London",
"Conflict": true,
"Professional": false,
"Tone": false,
"Subject Sentiment": 0.0
},
{
"Timestamp": "Fri, 26 Oct 2001 11:24:34 -0700 (PDT)",
"Sender": "[email protected]",
"Recipient": "sahamrx@yahoo",
"Subject": "London",
"Text": "FYI. One sure way to piss me off beyond anything you could possibly imagine is critize me for something BEFORE checking the facts!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! I told your wife that I was gonna get the title company's number from you and set it up. So go fuck yourself!!!!!!!!!!!!!!!!!",
"Conflict": true,
"Professional": false,
"Tone": false,
"Conflict Words %": 0.12244897959183673,
"Friendly Words %": 0.08163265306122448,
"Sentiment": -0.375,
"Subject Sentiment": 0.0,
"Punctuation %": 0.18213058419243985
},
{
"Sender": "scott halperin [mailto:[email protected]]",
"Recipient": "Holst, Keith",
"Subject": "London",
"Conflict": true,
"Professional": false,
"Tone": false,
"Subject Sentiment": 0.0
},
{
"Timestamp": "Fri, 26 Oct 2001 11:17:39 -0700 (PDT)",
"Sender": "[email protected]",
"Recipient": "sahamrx@yahoo",
"Subject": "London",
"Text": "I am sorry. I forgot that you're the only people on earth that have things going on in their lives!!!!",
"Conflict": true,
"Professional": false,
"Tone": false,
"Conflict Words %": 0.19047619047619047,
"Friendly Words %": 0.047619047619047616,
"Sentiment": -0.5,
"Subject Sentiment": 0.0,
"Punctuation %": 0.05825242718446602
},
{
"Sender": "scott halperin [mailto:[email protected]]",
"Recipient": "Holst, Keith",
"Subject": "London",
"Conflict": true,
"Professional": false,
"Tone": false,
"Subject Sentiment": 0.0
}
],
"thread1438": [
{
"conflict": "no",
"professional": "no",
"tone": "relaxed"
},
{
"Timestamp": "Fri, 7 Dec 2001 11:53:41 -0800 (PST)",
"Sender": "[email protected] Plaza Java Coffee Kiosk",
"Subject": "New Operating Hours for the Energizer Cafe, The Express Store, and",
"Text": "Due to the current business circumstances the hours to the Energizer Cafe, The Express Store, and Plaza Java will be adjusted as of Monday, December 10, 2001. Please note the operating hours for each location below:The Express Store\t8:30 AM to 3:00 PMPlaza Java\t\t7:00 AM to 3:00 PMThank you.",
"Conflict": false,
"Professional": false,
"Tone": false,
"Conflict Words %": 0.061224489795918366,
"Friendly Words %": 0.12244897959183673,
"Sentiment": -0.0625,
"Subject Sentiment": 0.13636363636363635,
"Punctuation %": 0.03767123287671233
},
{
"Timestamp": "Fri, 7 Dec 2001 11:53:41 -0800 (PST)",
"Sender": "[email protected] Plaza Java Coffee Kiosk",
"Subject": "New Operating Hours for the Energizer Cafe, The Express Store, and",
"Text": "Due to the current business circumstances the hours to the Energizer Cafe, The Express Store, and Plaza Java will be adjusted as of Monday, December 10, 2001. Please note the operating hours for each location below:The Express Store\t8:30 AM to 3:00 PMPlaza Java\t\t7:00 AM to 3:00 PMThank you.",
"Conflict": false,
"Professional": false,
"Tone": false,
"Conflict Words %": 0.061224489795918366,
"Friendly Words %": 0.12244897959183673,
"Sentiment": -0.0625,
"Subject Sentiment": 0.13636363636363635,
"Punctuation %": 0.03767123287671233
}
],
"thread1921": [
{
"conflict": "no",
"professional": "no",
"tone": "relaxed"
},
{
"Timestamp": "Thu, 12 Apr 2001 05:00:00 -0700 (PDT)",
"Sender": "Carlos Sole on 04/12/2001 11:56 AM",
"Recipient": "Kay Mann/Corp/Enron@Enron",
"Subject": "200 ",
"Text": "Just in time for the weekend.I hope to take tomorrow off, by the way. Paige is coming in tonight, and Michael has the day off from school.KaySounds good. Evn though we have not had our meeting next week, you are my leader, I serve at your pleasure and will do as you command (after three cups of coffee, I'm finally starting to feel like I'm getting my edge back!)Carlos Sole'Senior CounselEnron North America Corp.1400 Smith StreetHouston, Texas 77002-7361(713) 345-8191 (phone)713 646-3393 (fax)",
"Conflict": false,
"Professional": false,
"Tone": false,
"Conflict Words %": 0.047619047619047616,
"Friendly Words %": 0.11904761904761904,
"Sentiment": 0.7,
"Subject Sentiment": 0.0,
"Punctuation %": 0.052104208416833664
},
{
"Timestamp": "Thu, 12 Apr 2001 05:13:00 -0700 (PDT)",
"Sender": "Carlos Sole on 04/12/2001 11:56 AM",
"Recipient": "Kay Mann/Corp/Enron@Enron",
"Subject": "200 ",
"Text": "Maybe having 2 kids and an SUV makes you feel older. I don't know but this has been one of the longest work weeks ever for me in my brief professional career of 7 years, even though I've only had standard type workdays.Carlos Sole'Senior CounselEnron North America Corp.1400 Smith StreetHouston, Texas 77002-7361(713) 345-8191 (phone)713 646-3393 (fax)\tKay Mann\t04/12/2001 12:00 PM\t\tJust in time for the weekend.I hope to take tomorrow off, by the way. Paige is coming in tonight, and Michael has the day off from school.KaySounds good. Evn though we have not had our meeting next week, you are my leader, I serve at your pleasure and will do as you command (after three cups of coffee, I'm finally starting to feel like I'm getting my edge back!)Carlos Sole'Senior CounselEnron North America Corp.1400 Smith StreetHouston, Texas 77002-7361(713) 345-8191 (phone)713 646-3393 (fax)",
"Conflict": false,
"Professional": false,
"Tone": false,
"Conflict Words %": 0.06293706293706294,
"Friendly Words %": 0.08391608391608392,
"Sentiment": 0.2955555555555555,
"Subject Sentiment": 0.0,
"Punctuation %": 0.052095130237825596
}
],
"thread1924": [
{
"conflict": "no",
"professional": "no",
"tone": "relaxed"
},
{
"Timestamp": "Mon, 16 Apr 2001 10:30:00 -0700 (PDT)",
"Recipient": "kay",
"Subject": "Delta Power status",
"Text": "Hi there,I suggest a brief status call tomorrow at 100 central to assess where we are and what we need to finish. How does this time work for everyone?Thanks,Kay",
"Conflict": false,
"Professional": false,
"Tone": false,
"Conflict Words %": 0.16666666666666666,
"Friendly Words %": 0.23333333333333334,
"Subject Sentiment": 0.0,
"Punctuation %": 0.024691358024691357
},
{
"Timestamp": "Mon, 16 Apr 2001 11:01:00 -0700 (PDT)",
"Sender": "[email protected]",
"Recipient": "\"'Kay",
"Subject": "Delta Power status",
"Text": "That would be great. Thanks. Kay\"Campbell, Carolyn\" <[email protected]> on 04/16/2001 05:31:45 PMKay:I am available. Do you want me to notify everyone of a call in number?Carolyn M. CampbellKing=01;& Spalding=20713-276-7307 (phone)713-751-3280 (fax)[email protected] <mailto:[email protected]>=20=01;",
"Conflict": false,
"Professional": false,
"Tone": false,
"Conflict Words %": 0.14285714285714285,
"Friendly Words %": 0.14285714285714285,
"Sentiment": 0.4666666666666666,
"Subject Sentiment": 0.0,
"Punctuation %": 0.1262135922330097
},
{
"Recipient": "Kay",
"Subject": "Delta Power status",
"Conflict": false,
"Professional": false,
"Tone": false,
"Subject Sentiment": 0.0
},
{
"Timestamp": "Mon, 16 Apr 2001 11:02:00 -0700 (PDT)",
"Sender": "[email protected]",
"Recipient": "isabel",
"Subject": "Delta Power status",
"Text": "100 pm",
"Conflict": false,
"Professional": false,
"Tone": false,
"Conflict Words %": 0.0,
"Friendly Words %": 0.0,
"Subject Sentiment": 0.0,
"Punctuation %": 0.0
},
{
"Timestamp": "Mon, 16 Apr 2001 11:05:00 -0700 (PDT)",
"Sender": "[email protected]",
"Recipient": "\"'Kay",
"Subject": "Delta Power status",
"Text": "I wouldn't worry about the call. We are just collecting to do lists. I'm thinking a half hour.Kay\"Keffer, John\" <[email protected]> on 04/16/2001 05:34:44 PMif it's 1 PM, could we do it at 2? (last lunch with dad). I'm available inthe morning.",
"Conflict": false,
"Professional": false,
"Tone": false,
"Conflict Words %": 0.09090909090909091,
"Friendly Words %": 0.09090909090909091,
"Sentiment": 0.11666666666666668,
"Subject Sentiment": 0.0,
"Punctuation %": 0.0975609756097561
},
{
"Recipient": "Kay",
"Subject": "Delta Power status",
"Conflict": false,
"Professional": false,
"Tone": false,
"Subject Sentiment": 0.0
},
{
"Timestamp": "Mon, 16 Apr 2001 11:07:00 -0700 (PDT)",
"Sender": "[email protected]",
"Recipient": "\"'Kay",
"Subject": "Delta Power status",
"Text": "Carolyn will send out dial in instructions.\"PARKER, Isabel\" <[email protected]> on 04/16/2001 06:07:29 PMThis e-mail is confidential and may well also be legally privileged. If you have received it in error, you are on notice of its status. Please notify us immediately by reply e-mail and then delete this message from your system. Please do not copy it or use it for any purposes, or disclose its contents to your co-operation. Please contact ourIT Helpdesk on +44 (0) 20 7936 4000 Ext.2000 or email [email protected] if you need assistance.Thank you.Lisa O'Brien and myself will join from Freshfields.Isabel",
"Conflict": false,
"Professional": false,
"Tone": false,
"Conflict Words %": 0.1111111111111111,
"Friendly Words %": 0.10101010101010101,
"Sentiment": 0.2,
"Subject Sentiment": 0.0,
"Punctuation %": 0.050793650793650794
},
{
"Sender": "[email protected] [mailto:[email protected]]",
"Recipient": "PARKER, Isabel",
"Subject": "Delta Power status",
"Conflict": false,
"Professional": false,
"Tone": false,
"Subject Sentiment": 0.0
},
{
"Timestamp": "Mon, 16 Apr 2001 11:23:00 -0700 (PDT)",
"Sender": "[email protected]",
"Recipient": "\"'Kay",
"Subject": "Delta Power status",
"Text": "So far so good.\"Lang, Gregory F.\" <[email protected]> on 04/16/2001 06:23:07 PMAssuming that is 1pm central, that is fine with Paul, Hastings.",
"Conflict": false,
"Professional": false,
"Tone": false,
"Conflict Words %": 0.0,
"Friendly Words %": 0.0,
"Sentiment": 0.30416666666666664,
"Subject Sentiment": 0.0,
"Punctuation %": 0.10457516339869281
},
{
"Recipient": "Kay",
"Subject": "Delta Power status",
"Conflict": false,
"Professional": false,
"Tone": false,
"Subject Sentiment": 0.0
}
],
"thread760": [
{
"conflict": "no",
"professional": "no",
"tone": "relaxed"
},
{
"Timestamp": "Tue, 20 Mar 2001 01:58:00 -0800 (PST)",
"Sender": "[email protected]",
"Recipient": "janel",
"Subject": "California Messaging",
"Text": "Congratulations to you both. I know how these cat-herding exercises can be. Great effort. (And greatly appreciated from the point of view of someone living in a bunker in California.)Best,Jeff",
"Conflict": false,
"Professional": false,
"Tone": false,
"Conflict Words %": 0.12121212121212122,
"Friendly Words %": 0.18181818181818182,
"Sentiment": 0.5,
"Subject Sentiment": 0.0,
"Punctuation %": 0.041025641025641026
},
{
"Timestamp": "Tue, 20 Mar 2001 03:20:00 -0800 (PST)",
"Sender": "[email protected]",
"Recipient": "karen",
"Subject": "California Messaging",
"Text": "I'm here. If you'd like to de-brief on my marathon with Kasler, just give a holler.Best,Jeff",
"Conflict": false,
"Professional": false,
"Tone": false,
"Conflict Words %": 0.058823529411764705,
"Friendly Words %": 0.11764705882352941,
"Subject Sentiment": 0.0,
"Punctuation %": 0.07526881720430108
}
],
"thread3": [
{
"conflict": "yes",
"professional": "yes",
"tone": "stern"
},
{
"Timestamp": "Mon, 29 Oct 2001 10:47:55 -0800 (PST)",
"Sender": "<[email protected]>",
"Recipient": "<wise",
"Subject": "Huntley/question",
"Text": "Phillip,Have you found the title policy?Thanks,Bob Huntley----- Original Message -----> I will try and find my title policy this evening.>> -----Original Message----->>> Phillip,>> Could you please do me a favor? I would like to read your current> title policy to see what it says about easements. You should have> received a copy during your closing. I don't know how many pages it> will be but let me know how you want to handle getting a copy made.> I'll be happy to make the copy, or whatever makes it easy for you.>> Thanks,>> Bob Huntley>>>> **********************************************************************> This e-mail is the property of Enron Corp. and/or its relevant affiliateand may contain confidential and privileged material for the sole use of theintended recipient (s). Any review, use, distribution or disclosure byothers is strictly prohibited. If you are not the intended recipient (orauthorized to receive for the recipient), please contact the sender or replyto Enron Corp. at [email protected] and delete allcopies of the message. This e-mail (and any attachments hereto) are notintended to be an offer (or an acceptance) and do not create or evidence abinding and enforceable contract between Enron Corp. (or any of itsaffiliates) and the intended recipient or any other party, and may not berelied on by anyone as the basis of a contract by estoppel or otherwise.Thank you.> **********************************************************************>",
"Conflict": true,
"Professional": true,
"Tone": true,
"Conflict Words %": 0.26373626373626374,
"Friendly Words %": 0.0989010989010989,
"Sentiment": 0.22555555555555554,
"Subject Sentiment": 0.0,
"Punctuation %": 0.14552479072762395
},
{
"Timestamp": "Thu, 25 Oct 2001 13:49:57 -0700 (PDT)",
"Sender": "[email protected]",
"Recipient": "k",
"Subject": "Huntley/question",
"Text": "Phillip, Could you please do me a favor? I would like to read your current title policy to see what it says about easements. You should have received a copy during your closing. I don't know how many pages it will be but let me know how you want to handle getting a copy made. I'll be happy to make the copy, or whatever makes it easy for you. Thanks, Bob Huntley",
"Conflict": true,
"Professional": true,
"Tone": true,
"Conflict Words %": 0.24691358024691357,
"Friendly Words %": 0.2222222222222222,
"Sentiment": 0.4388888888888889,
"Subject Sentiment": 0.0,
"Punctuation %": 0.026881720430107527
}
],
"thread8": [
{
"conflict": "yes",
"professional": "yes",
"tone": "stern"
},
{
"Timestamp": "Mon, 31 Dec 2001 10:53:43 -0800 (PST)",
"Sender": "[email protected]",
"Recipient": "wes",
"Subject": "NETCO",
"Text": "The New Year has arrived and we really to finalize a lot of the work with regards to moving into NETCO. Obviously we still do not have a deal but the deadline is approaching and preparations need to be finalized.The main areas to focus on over the next week are:-(i) \tRe-start/Integration Plans (due on Jan 7)\t\t\t\tTo be forwarded to Louise\t\tThese plans need to be detailed and show clear detailed timelines and detailed responsibilities for getting us up and running as soon as possible. \tThe current restart date is January 21, 2001 but may be pushed forward to January 14, 2002.\t(ii)\tBudget (due Jan 3, 2002)\t\t\t\t\t\tTo be forwarded to Faith Killen \tFirst year budget to include all start up costs (some of which can be amortized)(iii)\tSeating Plans\t\t\t\t\t\t\t\tTammy Shepperd to co-ordinate\tWe need to start the planning process for seating as we will be living on floors 5 & 6 of the Enron South building.\tI have asked Tammy Shepperd to commence the seating plan and we would look to start the moves as soon as possible but with a large number occuring around January 11,2002.(iv)\tDue Diligence\tWe continue the process with two new companies this week (Wednesday and Thursday). Andy Zipper is taking the lead for the company arriving on Wednesday, please help him with his requirements.I would ask that both John and I are notified of any changes to the Netco personnel list on a timely fashion and that the list is maintained on a continual basis. Please forward all alterations to Jeanie Slone who has responsibility for the master list.Communication - I believe that the New Year combined with a internal communication issues may be a good time to review what we want to say on Netco and what our policies are. I am asking David Oxley to co-ordinate with all of you on this. I know a lot of you believe that we need to only communicate once we have retention programme in place for the estate which may be a good idea but we we need to make sure that we lose as few people as possible.If you are unavailable this week, please ensure you delegate this work out.Happy New YearLouise",
"Conflict": true,
"Professional": true,
"Tone": true,
"Conflict Words %": 0.0958904109589041,
"Friendly Words %": 0.1589041095890411,
"Sentiment": 0.14053339517625232,
"Subject Sentiment": 0.0,
"Punctuation %": 0.02112337974075852
},
{
"Timestamp": "Wed, 2 Jan 2002 06:43:56 -0800 (PST)",
"Sender": "\tKitchen, Louise ",
"Recipient": "l",
"Subject": "NETCO",
"Text": "FYI. Please provide me with estimates of costs. Jim -----Original Message-----Sent:\tMonday, December 31, 2001 12:54 PMTo:\tColwell, Wes; Hodges, Georgeanne; Milnthorp, Rob; Zufferli, John; Hedstrom, Peggy; Myers, Thomas; Bradford, William S.; Will, Lloyd; Beck, Sally; Hall, Bob M; Presto, Kevin M.; Forster, David; Reeves, Leslie; Gaskill, Chris; Superty, Robert; Lagrasta, Fred; Luce, Laura; Tycholiz, Barry; Redmond, Brian; Vickers, Frank; Gossett, Jeffrey C.; Arnold, John; Grigsby, Mike; Allen, Phillip K.; Neal, Scott; Martin, Thomas A.; Shively, Hunter S.; Wynne, Rita; Rub, Jenny; Webb, Jay; Haedicke, Mark E.; Buy, Rick; Calger, Christopher F.; Duran, W. David; Robinson, Mitch; Curry, Mike; Heizenrader, Tim; Belden, Tim; White, Stacey W.; Steffes, James D.; Aucoin, Berney C. ; Roberts, Mike A.; Oxley, DavidCc:\tLavorato, JohnSubject:\tNETCOThe New Year has arrived and we really to finalize a lot of the work with regards to moving into NETCO. Obviously we still do not have a deal but the deadline is approaching and preparations need to be finalized.The main areas to focus on over the next week are:-(i) \tRe-start/Integration Plans (due on Jan 7)\t\t\t\tTo be forwarded to Louise\t\tThese plans need to be detailed and show clear detailed timelines and detailed responsibilities for getting us up and running as soon as possible. \tThe current restart date is January 21, 2001 but may be pushed forward to January 14, 2002.\t(ii)\tBudget (due Jan 3, 2002)\t\t\t\t\t\tTo be forwarded to Faith Killen \tFirst year budget to include all start up costs (some of which can be amortized)(iii)\tSeating Plans\t\t\t\t\t\t\t\tTammy Shepperd to co-ordinate\tWe need to start the planning process for seating as we will be living on floors 5 & 6 of the Enron South building.\tI have asked Tammy Shepperd to commence the seating plan and we would look to start the moves as soon as possible but with a large number occuring around January 11,2002.(iv)\tDue Diligence\tWe continue the process with two new companies this week (Wednesday and Thursday). Andy Zipper is taking the lead for the company arriving on Wednesday, please help him with his requirements.I would ask that both John and I are notified of any changes to the Netco personnel list on a timely fashion and that the list is maintained on a continual basis. Please forward all alterations to Jeanie Slone who has responsibility for the master list.Communication - I believe that the New Year combined with a internal communication issues may be a good time to review what we want to say on Netco and what our policies are. I am asking David Oxley to co-ordinate with all of you on this. I know a lot of you believe that we need to only communicate once we have retention programme in place for the estate which may be a good idea but we we need to make sure that we lose as few people as possible.If you are unavailable this week, please ensure you delegate this work out.Happy New YearLouise",
"Conflict": true,
"Professional": true,
"Tone": true,
"Conflict Words %": 0.08488612836438923,
"Friendly Words %": 0.12422360248447205,
"Sentiment": 0.14191326530612244,
"Subject Sentiment": 0.0,
"Punctuation %": 0.05519591141396934
}
],
"thread301": [
{
"conflict": "yes",
"professional": "no",
"tone": "relaxed"
},
{
"Timestamp": "Mon, 19 Nov 2001 18:02:33 -0800 (PST)",
"Sender": "[email protected]",
"Recipient": "jeff",
"Subject": "yo",
"Text": "whassup with this crazee merger and what does it meanfor you? and i actually just wanted to say hi... so.hi. ha!__________________________________________________Do You Yahoo!?Find the one for you at Yahoo! Personalshttp://personals.yahoo.com",
"Conflict": true,
"Professional": false,
"Tone": false,
"Conflict Words %": 0.0,
"Friendly Words %": 0.13333333333333333,
"Subject Sentiment": 0.0,
"Punctuation %": 0.26859504132231404
},
{
"Timestamp": "Tue, 20 Nov 2001 09:18:47 -0800 (PST)",
"Sender": "[email protected]",
"Recipient": "jeff",
"Subject": "yo",
"Text": "i'm finer and finer, and still not with a jobjob butnot really wanting a jobjob, too scared of going backto hi-tech, and falling in love with my job, andgetting laid off again, must be some kind of fear ofintimacy problem..... but i'll probably want to getreal intimate again as soon as the $$$$ runsout....... going to seattle for thanksgiving atkevin's, 35 people this year, yay, and lots of littlecute kids running around, and, well, i couldn't sleeplast night and tossed and turned and finally fellasleep at 6 or so and missed my yoga class at 9....this is my life, and it ain't have bad.... no nono.... i hear pp got a job, yay and cool and good forher... x0, happy thanksgiving, and good luckwhethering the merger....--- \"Dasovich, Jeff\" <[email protected]> wrote:",
"Conflict": true,
"Professional": false,
"Tone": false,
"Conflict Words %": 0.07692307692307693,
"Friendly Words %": 0.1076923076923077,
"Sentiment": 0.33499999999999996,
"Subject Sentiment": 0.0,
"Punctuation %": 0.08762886597938144
}
],
"thread302": [
{
"conflict": "yes",
"professional": "yes",
"tone": "relaxed"
},
{
"Timestamp": "Tue, 20 Nov 2001 08:55:21 -0800 (PST)",
"Sender": "[email protected]",
"Recipient": "jeff",
"Subject": "IMPORTANT ! !",
"Text": "Did you know that Karl Woods mother was a full blown member of theCommunist party? He was a red diaper baby.Are you going to the PANC luncheon today at Sinbads? Commissioner Brown isthe featured speaker.",
"Conflict": true,
"Professional": true,
"Tone": false,
"Conflict Words %": 0.08108108108108109,
"Friendly Words %": 0.13513513513513514,
"Sentiment": 0.35,
"Subject Sentiment": 0.625,
"Punctuation %": 0.01951219512195122
},
{
"Timestamp": "Tue, 20 Nov 2001 09:14:49 -0800 (PST)",
"Sender": "[email protected]",
"Recipient": "e-mail <",
"Subject": "IMPORTANT ! !",
"Text": "How do folks feel about a call on this subject today. Say around 2 PM Paci=fic.=20If this works for folks, lets use my dial-in number=20888.621.9536PC *3957889*=20Aaron=20=20",
"Conflict": true,
"Professional": true,
"Tone": false,
"Conflict Words %": 0.07407407407407407,
"Friendly Words %": 0.07407407407407407,
"Sentiment": -0.16666666666666666,
"Subject Sentiment": 0.625,
"Punctuation %": 0.08
},
{
"Sender": "Dan Douglass [mailto:[email protected]]leimer; Steve Huhman; Roger Pelote; Rob Nichol; Randy Hickok; Peter Blood; =",
"Recipient": "ARM; Vicki Sandler; Todd Torgerson; Tamara Johnson; Sue Mara; Steve Sch=Nam Nguyen; Karen Shea; Jim Crossen; Jeff Dasovich; Janie Mollon; Jack Pigo=",
"Subject": "IMPORTANT ! !",
"Conflict": true,
"Professional": true,
"Tone": false,
"Subject Sentiment": 0.625
},
{
"Timestamp": "Tue, 20 Nov 2001 07:57:59 -0800 (PST)",
"Recipient": "arm@enron",
"Subject": "IMPORTANT ! !",
"Text": "Attached is a ruling issued yesterday by Commissioner Wood directing that E=SPs and customers file copies of direct access contracts with the Commissio=n by December 3. The contracts will be available to ALL other parties who =sign a \"suitable\" protective order. The Ordering Paragraphs read as follow=:1. By December 3, 2001, any party who believes that it has a direct acc=ess contract or agreement potentially affected by an order to suspend direc=t access as of July 1, 2001 or a date earlier than September 20, 2001, shal=l submit a true and correct copy of each of the actual contracts or agreeme=nts along with any arguments as to the impact of such an order. A failure =to submit this information for the Commission's consideration will be consi=dered a waiver of the arguments related to claims involving the contracts a=nd agreements. Initially, the true and correct copy of each of the actual =contracts or agreements shall be filed under seal with the Commission's Doc=ket Office and served on Administrative Law Judge (ALJ) Robert Barnett.2. Office of Ratepayer Advocates shall work with the parties who have e=xecuted direct access contracts or agreements to develop a proposed protect=ive order and nondisclosure agreement for Commission staff, which shall be =submitted to ALJ Barnett by December 3. =203. The electric service providers and customers who are parties shall w=ork with other parties and shall jointly submit a proposed protective order= and nondisclosure agreement that will cover parties other than Commission =staff by December 11, 2001.=204. Parties' supplemental comments to the comments they filed in respons=e to the October 23rd Assigned Commissioner Ruling shall be submitted by Ja=nuary 4, 2002.As a preliminary matter, of course, AReM and WPTF do not, in their own name=s, have direct access contracts. However, certain members of AReM and WPTF= are direct parties to the proceeding and need to consider what course they= wish to take. The group also needs to consider if they wish to fight this= Order on Constitutional or procedural grounds. I will be considering our =options and get back to you with more detail. However, as a very prelimina=ry analysis, it is evident that the Commission does not have jurisdiction o=ver either ESPs or the customers they serve. The request is also particula=rly outrageous because of the statements that, \"A failure to submit this in=formation for the Commission's consideration will be considered a waiver of= the arguments related to the claims involving the contracts and agreements=\" and \"Parties to this proceeding may have access to these contracts and ag=reements after the appropriate protective order and nondisclosure agreement=s are in effect.\" The former is a likely denial of due process and the lat=ter exposes proprietary contracts and pricing information to ESP competitor=s and exposes sensitive pricing information to competitors of energy-depend=ent customers. =20=20Your thoughts would be appreciated. My initial reaction is that this is t=ime for ESPs and customer groups, such as CMTA, ABAG, CLECA, CIU, EPUC, SPU=RR, etc., to band together and fight this at multiple levels, from the Gove=rnor's Office on down, including in the media. Your thoughts would be very= much appreciated.=20Dan=20Law Offices of Daniel W. Douglass5959 Topanga Canyon Blvd. Suite 244Woodland Hills, CA [email protected] <mailto:[email protected]>",
"Conflict": true,
"Professional": true,
"Tone": false,
"Conflict Words %": 0.08035714285714286,
"Friendly Words %": 0.10178571428571428,
"Sentiment": 0.09851066468253968,
"Subject Sentiment": 0.625,
"Punctuation %": 0.03505747126436782
},
{
"Timestamp": "Tue, 20 Nov 2001 09:09:55 -0800 (PST)",
"Sender": "[email protected]",
"Recipient": "jeff",
"Subject": "IMPORTANT ! !",
"Text": "Agreed!DanLaw Offices of Daniel W. Douglass5959 Topanga Canyon Blvd. Suite 244Woodland Hills, CA [email protected] ----- Original Message -----=20; Mara, Susan ; Steve Schleimer ; Steve Huhman ; Roger Pelote ; Rob Nichol =; Randy Hickok ; Peter Blood ; Nam Nguyen ; Karen Shea ; Jim Crossen ; Jani=e Mollon ; Jack Pigott ; Greg Blue ; George Vaughn ; Gary Ackerman ; Ed Caz=alet ; Denice Cazalet Purdum ; Curtis Kebler ; Curt Hatton ; Corby Gardiner= ; Charles Miessner ; Carolyn Baker ; Bill Ross ; Alden Hoekstra ; Max Bulk==20=20 Thanks, Dan. I'm having a very difficult time seeing how Enron will have= any choice other than to vigorously (and respectfully) 1) decline to offer= up any contracts and 2) assert our view that Karl Wood it is unfair to att=empt to impose any quid pro quo, i.e., forcing folks to waive their due pro=cess rights by declining to hand contracts over to Karl. Best, Jeff -----Original Message-----eve Schleimer; Steve Huhman; Roger Pelote; Rob Nichol; Randy Hickok; Peter =Blood; Nam Nguyen; Karen Shea; Jim Crossen; Dasovich, Jeff; Janie Mollon; J=ack Pigott; Greg Blue; George Vaughn; Gary Ackerman; Ed Cazalet; Denice Caz=alet Purdum; Curtis Kebler; Curt Hatton; Corby Gardiner; Charles Miessner; =Carolyn Baker; Bill Ross; Alden Hoekstra; Max Bulk' Attached is a ruling issued yesterday by Commissioner Wood directing th=at ESPs and customers file copies of direct access contracts with the Commi=ssion by December 3. The contracts will be available to ALL other parties =who sign a \"suitable\" protective order. The Ordering Paragraphs read as fo=llow: 1. By December 3, 2001, any party who believes that it has a direct= access contract or agreement potentially affected by an order to suspend d=irect access as of July 1, 2001 or a date earlier than September 20, 2001, =shall submit a true and correct copy of each of the actual contracts or agr=eements along with any arguments as to the impact of such an order. A fail=ure to submit this information for the Commission's consideration will be c=onsidered a waiver of the arguments related to claims involving the contrac=ts and agreements. Initially, the true and correct copy of each of the act=ual contracts or agreements shall be filed under seal with the Commission's= Docket Office and served on Administrative Law Judge (ALJ) Robert Barnett. 2. Office of Ratepayer Advocates shall work with the parties who ha=ve executed direct access contracts or agreements to develop a proposed pro=tective order and nondisclosure agreement for Commission staff, which shall= be submitted to ALJ Barnett by December 3. =20 3. The electric service providers and customers who are parties sha=ll work with other parties and shall jointly submit a proposed protective o=rder and nondisclosure agreement that will cover parties other than Commiss=ion staff by December 11, 2001.=20 4. Parties' supplemental comments to the comments they filed in res=ponse to the October 23rd Assigned Commissioner Ruling shall be submitted b=y January 4, 2002. As a preliminary matter, of course, AReM and WPTF do not, in their own =names, have direct access contracts. However, certain members of AReM and =WPTF are direct parties to the proceeding and need to consider what course =they wish to take. The group also needs to consider if they wish to fight =this Order on Constitutional or procedural grounds. I will be considering =our options and get back to you with more detail. However, as a very preli=minary analysis, it is evident that the Commission does not have jurisdicti=on over either ESPs or the customers they serve. The request is also parti=cularly outrageous because of the statements that, \"A failure to submit thi=s information for the Commission's consideration will be considered a waive=r of the arguments related to the claims involving the contracts and agreem=ents\" and \"Parties to this proceeding may have access to these contracts an=d agreements after the appropriate protective order and nondisclosure agree=ments are in effect.\" The former is a likely denial of due process and the= latter exposes proprietary contracts and pricing information to ESP compet=itors and exposes sensitive pricing information to competitors of energy-de=pendent customers. =20 Your thoughts would be appreciated. My initial reaction is that this =is time for ESPs and customer groups, such as CMTA, ABAG, CLECA, CIU, EPUC,= SPURR, etc., to band together and fight this at multiple levels, from the =Governor's Office on down, including in the media. Your thoughts would be =very much appreciated. Dan Law Offices of Daniel W. Douglass 5959 Topanga Canyon Blvd. Suite 244 Woodland Hills, CA 91367 [email protected] ********************************************************************** This e-mail is the property of Enron Corp. and/or its relevant affiliate =and may contain confidential and privileged material for the sole use of th=e intended recipient (s). Any review, use, distribution or disclosure by ot=hers is strictly prohibited. If you are not the intended recipient (or auth=orized to receive for the recipient), please contact the sender or reply to= Enron Corp. at [email protected] and delete all cop=ies of the message. This e-mail (and any attachments hereto) are not intend=ed to be an offer (or an acceptance) and do not create or evidence a bindin=g and enforceable contract between Enron Corp. (or any of its affiliates) a=nd the intended recipient or any other party, and may not be relied on by a=nyone as the basis of a contract by estoppel or otherwise. Thank you.=20 **********************************************************************",
"Conflict": true,
"Professional": true,
"Tone": false,
"Conflict Words %": 0.13264248704663212,
"Friendly Words %": 0.08290155440414508,
"Sentiment": 0.10997389306599835,
"Subject Sentiment": 0.625,
"Punctuation %": 0.06955767562879445
},
{
"Timestamp": "Tue, 20 Nov 2001 09:33:39 -0800 (PST)",
"Sender": "[email protected]",
"Recipient": "jeff",
"Subject": "IMPORTANT ! !",
"Text": "Jeff I asked ARMers to get together by phone today on this. Can you make it? Here is the number How do folks feel about a call on this subject today. Say around 2 PMPacific. If this works for folks, lets use my dial-in number 888.621.9536PC *3957889* Aaron",
"Conflict": true,
"Professional": true,
"Tone": false,
"Conflict Words %": 0.11538461538461539,
"Friendly Words %": 0.09615384615384616,
"Sentiment": -0.16666666666666666,
"Subject Sentiment": 0.625,
"Punctuation %": 0.038461538461538464
},
{
"Sender": "Dan Douglass [mailto:[email protected]]Schleimer; Steve Huhman; Roger Pelote; Rob Nichol; Randy Hickok; Peter",
"Recipient": "ARM; Vicki Sandler; Todd Torgerson; Tamara Johnson; Mara, Susan; SteveBlood; Nam Nguyen; Karen Shea; Jim Crossen; Dasovich, Jeff; Janie Mollon;",
"Subject": "IMPORTANT ! !",
"Conflict": true,
"Professional": true,
"Tone": false,
"Subject Sentiment": 0.625
},
{
"Timestamp": "Tue, 20 Nov 2001 15:46:23 -0800 (PST)",
"Sender": "[email protected]",
"Recipient": "jeff",
"Subject": "IMPORTANT ! !",
"Text": "Please don't hesitate to give the conference call number to Mike or othersthat are interested in a coordinated/joint response. My direct dial is 415.395.7889My cell is 415.412.7059 ",
"Conflict": true,
"Professional": true,
"Tone": false,
"Conflict Words %": 0.13793103448275862,
"Friendly Words %": 0.1724137931034483,
"Sentiment": 0.175,
"Subject Sentiment": 0.625,
"Punctuation %": 0.038461538461538464
},
{
"Sender": "Dan Douglass [mailto:[email protected]]Schleimer; Steve Huhman; Roger Pelote; Rob Nichol; Randy Hickok; Peter",
"Recipient": "ARM; Vicki Sandler; Todd Torgerson; Tamara Johnson; Mara, Susan; SteveBlood; Nam Nguyen; Karen Shea; Jim Crossen; Dasovich, Jeff; Janie Mollon;",
"Subject": "IMPORTANT ! !",
"Conflict": true,
"Professional": true,
"Tone": false,
"Subject Sentiment": 0.625
}
],
"thread303": [
{
"conflict": "yes",
"professional": "yes",
"tone": "stern"
},
{
"Timestamp": "Mon, 10 Sep 2001 14:34:01 -0700 (PDT)",
"Sender": "\"Marilyn Hawes\" <[email protected]>",
"Recipient": "<vjw@ceert",
"Subject": "for Board review and comment",
"Text": "So I guess Calpine doesn't have to veto CEERT's involvement in the call forcontract reform----- Original Message -----",
"Conflict": true,
"Professional": true,
"Tone": true,
"Conflict Words %": 0.16666666666666666,
"Friendly Words %": 0.1111111111111111,
"Sentiment": 0.375,
"Subject Sentiment": 0.0,
"Punctuation %": 0.1016949152542373
},
{
"Timestamp": "Mon, 10 Sep 2001 17:45:57 -0700 (PDT)",
"Recipient": "\"'Rachel McMahon'\" <rachel@cleanpower",
"Subject": "for Board review and comment",
"Text": "----- Original Message -----<[email protected]>; <[email protected]>;<[email protected]>; <[email protected]>;<[email protected]>; <[email protected]>; <[email protected]>;\"Jack Pigott\" <[email protected]>; <[email protected]>;<[email protected]>; <[email protected]>;<[email protected]>; <[email protected]>;<[email protected]>; <[email protected]>; <[email protected]>;<[email protected]>",
"Conflict": true,
"Professional": true,
"Tone": true,
"Conflict Words %": 0.06666666666666667,
"Friendly Words %": 0.0,
"Sentiment": 0.375,
"Subject Sentiment": 0.0,
"Punctuation %": 0.21304347826086956
},
{
"Timestamp": "Tue, 11 Sep 2001 07:19:10 -0700 (PDT)",
"Sender": "[email protected]",
"Recipient": "jeff",
"Subject": "for Board review and comment",
"Text": "Serious.",
"Conflict": true,
"Professional": true,
"Tone": true,
"Conflict Words %": 0.0,
"Friendly Words %": 0.0,
"Sentiment": -0.3333333333333333,
"Subject Sentiment": 0.0,
"Punctuation %": 0.125
},
{
"Sender": "Shapiro, Richard ",
"Recipient": "Dasovich, Jeff",
"Subject": "for Board review and comment",
"Conflict": true,
"Professional": true,
"Tone": true,
"Subject Sentiment": 0.0
},
{
"Timestamp": "Tue, 11 Sep 2001 18:39:39 -0700 (PDT)",
"Sender": "[email protected]",
"Recipient": "jeff",
"Subject": "for Board review and comment",
"Text": "Jeff,John White has proposed to the CEERT Board that we send the attached letter to the Governor attacking the DWR contracts. Would you please take a look at it and let me know what you think of it. You can reach me on my cell phone at 213-359-0853. Thanks.Hap---------------------- Forwarded by Hap Boyd/EWC/Enron on 09/11/2001 06:41 PM ---------------------------\"Rachel McMahon\" <[email protected]> on 09/11/2001 04:16:37 PMTo:\t\"'V. John White'\" <[email protected]>, \"'Jack Pigott'\" <[email protected]>, <[email protected]>, <[email protected]>, <[email protected]>, <[email protected]>, <[email protected]>, <[email protected]>, <[email protected]>, <[email protected]>, <[email protected]>, <[email protected]>, <[email protected]>, <[email protected]>, <[email protected]>, <[email protected]>, <[email protected]>, <[email protected]>, <[email protected]>cc:\t Subject:\tfor Board review and commentCEERT and Clean Power Campaign Directors - Attached is a revised version ofthe letter sent earlier this week regarding CDWR power contracts. Pleasereview and respond with comments as soon as possible. A discussion ofCEERT's plan of action will be scheduled shortly.Thank you,Rachel McMahonCEERT916-442-7785916-447-2940 [email protected] - Sept 11 to Governor re contracts.doc ",
"Conflict": true,
"Professional": true,
"Tone": true,
"Conflict Words %": 0.07534246575342465,
"Friendly Words %": 0.07534246575342465,
"Sentiment": 0.07500000000000001,
"Subject Sentiment": 0.0,
"Punctuation %": 0.14170337738619676
},
{
"Timestamp": "Wed, 12 Sep 2001 18:19:16 -0700 (PDT)",
"Sender": "[email protected]",
"Recipient": "jeff",
"Subject": "for Board review and comment",
"Text": "I will be quoted along the lines of the letter, but at this point, I'm in no hurry.I appreciate your support with Hap, though, very much.I don't mind taking risks, but I don't want to precipitate a palace coup led by Calpine. Working on a Friday, Sept 21st event in San Diego targeting Sempra. Have found some new allies among the Latinos.Stay tuned. ----- Original Message ----- FYI. Unless I hear from you, I'm telling Hap that it's fine. Best, Jeff -----Original Message----- Jeff, John White has proposed to the CEERT Board that we send the attached letter to the Governor attacking the DWR contracts. Would you please take a look at it and let me know what you think of it. You can reach me on my cell phone at 213-359-0853. Thanks. Hap ---------------------- Forwarded by Hap Boyd/EWC/Enron on 09/11/2001 06:41 PM --------------------------- \"Rachel McMahon\" <[email protected]> on 09/11/2001 04:16:37 PM CEERT and Clean Power Campaign Directors - Attached is a revised version of the letter sent earlier this week regarding CDWR power contracts. Please review and respond with comments as soon as possible. A discussion of CEERT's plan of action will be scheduled shortly. Thank you, Rachel McMahon CEERT 916-442-7785 916-447-2940 fax [email protected] - Sept 11 to Governor re contracts.doc <<Sept 11 to Governor re contracts.doc>> ********************************************************************** This e-mail is the property of Enron Corp. and/or its relevant affiliate and may contain confidential and privileged material for the sole use of the intended recipient (s). Any review, use, distribution or disclosure by others is strictly prohibited. If you are not the intended recipient (or authorized to receive for the recipient), please contact the sender or reply to Enron Corp. at [email protected] and delete all copies of the message. This e-mail (and any attachments hereto) are not intended to be an offer (or an acceptance) and do not create or evidence a binding and enforceable contract between Enron Corp. (or any of its affiliates) and the intended recipient or any other party, and may not be relied on by anyone as the basis of a contract by estoppel or otherwise. Thank you. **********************************************************************",
"Conflict": true,
"Professional": true,
"Tone": true,
"Conflict Words %": 0.1882640586797066,
"Friendly Words %": 0.09290953545232274,
"Sentiment": 0.20946969696969697,
"Subject Sentiment": 0.0,
"Punctuation %": 0.1272264631043257
},
{
"Timestamp": "Wed, 12 Sep 2001 18:22:12 -0700 (PDT)",
"Sender": "[email protected]",
"Recipient": "jeff",
"Subject": "for Board review and comment",
"Text": "Jeff,My biggest concern is that we draw attantion to our QF contracts and there is pressure for us to give up our capacity payment or the CPUC futher dilutes our energy payment. I also don't think it makes sense to attack the large companies that have the DWR contracts. We generally end up working together on various issues and I do n't want to damage the relationships. I agree with many of the points John makes, but I don't want to be identified with the letter.Enron Wind also needs to see an Edison MOU bill passed so we can get paid our past due amounts and get our five year fixed energy price on our ISO4 contracts. I plan to be in Sacramento the next couple of days and will stop by Governmental Advocates.Regards,Hap",
"Conflict": true,
"Professional": true,
"Tone": true,
"Conflict Words %": 0.05223880597014925,
"Friendly Words %": 0.08955223880597014,
"Sentiment": 0.09851190476190476,
"Subject Sentiment": 0.0,
"Punctuation %": 0.016483516483516484
},
{
"Timestamp": "Thu, 13 Sep 2001 08:52:18 -0700 (PDT)",
"Sender": "\"Dasovich, Jeff\" <[email protected]>",
"Recipient": "<vjw@cleanpower",
"Subject": "for Board review and comment",
"Text": "The IEP old school tie.Hap's a really good guy. Let's just keep up the dialogue. But let's be sureI can hit sempra asap.----- Original Message -----",
"Conflict": true,
"Professional": true,
"Tone": true,
"Conflict Words %": 0.07692307692307693,
"Friendly Words %": 0.11538461538461539,
"Sentiment": 0.38749999999999996,
"Subject Sentiment": 0.0,
"Punctuation %": 0.11486486486486487
}
],
"thread304": [
{
"conflict": "yes",
"professional": "no",
"tone": "relaxed"
},
{
"Timestamp": "Wed, 21 Nov 2001 14:01:49 -0800 (PST)",
"Recipient": "lamar",
"Subject": "Pac Tel - CPUC Customer Switch Complaint",
"Text": "I received a call late today from the CPUC (Joyce @ 415-703-2199). Someone from Pac Tel called and said that his service was switched without authorization - Mike Benson with Payphone group @707-253-8892 or 707-292-1766.Lamar -- who is the client rep for Pac Tel? Can they get into Pac Tel and try and find out if we have done something inappropriate? We need to call this guy back by Monday EOB. Please let Jeff Dasovich know so he can call Joyce back - I'll be out on vacation next week.Jim",
"Conflict": true,
"Professional": false,
"Tone": false,
"Conflict Words %": 0.18085106382978725,
"Friendly Words %": 0.07446808510638298,
"Sentiment": -0.3,
"Subject Sentiment": -0.3,
"Punctuation %": 0.04233870967741935
},
{
"Timestamp": "Mon, 26 Nov 2001 07:31:44 -0800 (PST)",
"Recipient": "d",
"Subject": "Pac Tel - CPUC Customer Switch Complaint",
"Text": "Geoff Pollard is the SM for Pac Tel.From:\tJames D Steffes/ENRON@enronXgate on 11/21/2001 04:01 PMTo:\tLamar Frazier/HOU/EES@EEScc:\tJeff Dasovich/ENRON@enronXgate, Susan J Mara/ENRON@enronXgate, Mike B Smith/ENRON@enronXgate, Diann Huddleson/HOU/EES@EES, Evan Hughes/ENRON@enronxgate, Rebecca Fite/ENRON@enronxgate Subject:\tPac Tel - CPUC Customer Switch ComplaintI received a call late today from the CPUC (Joyce @ 415-703-2199). Someone from Pac Tel called and said that his service was switched without authorization - Mike Benson with Payphone group @707-253-8892 or 707-292-1766.Lamar -- who is the client rep for Pac Tel? Can they get into Pac Tel and try and find out if we have done something inappropriate? We need to call this guy back by Monday EOB. Please let Jeff Dasovich know so he can call Joyce back - I'll be out on vacation next week.Jim",
"Conflict": true,
"Professional": false,
"Tone": false,
"Conflict Words %": 0.140625,
"Friendly Words %": 0.0546875,
"Sentiment": -0.23333333333333334,
"Subject Sentiment": -0.3,
"Punctuation %": 0.06177156177156177
},
{
"Timestamp": "Tue, 27 Nov 2001 16:36:16 -0800 (PST)",
"Recipient": "jeff",
"Subject": "Pac Tel - CPUC Customer Switch Complaint",
"Text": "All,I spoke with the customer, Mike Benson. He is not angry, but he would like his accounts returned to bundled service. He understands that we are implementing a large contract with SBC Corp Real Estate, and that it is possible more of his accounts are inadvertantly on the list. He knows to contact me directly with future issues. I submitted the deal sheet to de-DASR the 2 accounts he identified to Samantha Fite a few moments ago.I have also notified the SBC contracts manager of the situation.Let me know if there are any questions or concerns.GeoffGeoff PollardService ManagerEnron Energy Services925-543-3763",
"Conflict": true,
"Professional": false,
"Tone": false,
"Conflict Words %": 0.0594059405940594,
"Friendly Words %": 0.09900990099009901,
"Sentiment": 0.08214285714285714,
"Subject Sentiment": -0.3,
"Punctuation %": 0.022690437601296597
},
{
"Timestamp": "Wed, 28 Nov 2001 06:13:24 -0800 (PST)",
"Recipient": "geoff",
"Subject": "Pac Tel - CPUC Customer Switch Complaint",
"Text": "Geoff, weren't we directed by Ken Lear to DASR these accounts? Is he aware that Mike Benson has requested we deDASR them? Are there other accounts that we have DASRed that shouldn't have been? From:\tGeoff Pollard/Western Region/The Bentley Company@Exchange on 11/27/2001 06:36 PMTo:\tJeff Dasovich/ENRON@enronXgate@ENRON@EES, Lamar Frazier/HOU/EES@EES, James D Steffes/ENRON@enronXgatecc:\tSusan J Mara/ENRON@enronXgate, Mike B Smith/ENRON@enronXgate, Diann Huddleson/HOU/EES@EES, Evan Hughes/ENRON@enronxgate, Rebecca Fite/ENRON@enronxgate, Tom Riley/Western Region/The Bentley Company@Exchange All,I spoke with the customer, Mike Benson. He is not angry, but he would like his accounts returned to bundled service. He understands that we are implementing a large contract with SBC Corp Real Estate, and that it is possible more of his accounts are inadvertantly on the list. He knows to contact me directly with future issues. I submitted the deal sheet to de-DASR the 2 accounts he identified to Samantha Fite a few moments ago.I have also notified the SBC contracts manager of the situation.Let me know if there are any questions or concerns.GeoffGeoff PollardService ManagerEnron Energy Services925-543-3763",
"Conflict": true,
"Professional": false,
"Tone": false,
"Conflict Words %": 0.0650887573964497,
"Friendly Words %": 0.08284023668639054,
"Sentiment": 0.07559523809523809,
"Subject Sentiment": -0.3,
"Punctuation %": 0.048599670510708404
}
],
"thread305": [
{
"conflict": "yes",
"professional": "yes",
"tone": "relaxed"
},
{
"Timestamp": "Sat, 24 Nov 2001 07:49:39 -0800 (PST)",
"Sender": "\tDasovich, Jeff Sent:\tWednesday, November 21, 2001 4:55 PM",
"Recipient": "jeff",
"Subject": "Conference Call with PG&E to Discuss the Gas Portion of Its",
"Text": "Thanks. I think we would definitely be interested. -----Original Message-----Sent:\tWednesday, November 21, 2001 4:55 PMTo:\tTycholiz, Barry; Tribolet, Michael; Mellencamp, Lisa; Hass, Glen; Miller, Stephanie; Tholt, Jane M.; Lawner, Leslie; Cantrell, Rebecca W.; Steffes, James D.; Novosel, Sarah; Harris, Steven; Fossum, DrewSubject:\tConference Call with PG&E to Discuss the Gas Portion of Its Proposed Plan of Reorganization that It Will File w/FERC Toward End of NovemberPG&E called. They want to set up a conference call to brief us on the gas piece of their POR that they'll be filing with FERC around November 30th. They want to try to do it in the next couple of weeks. Please let me know if you're interested and please pass this along to anyone else who might be interested. Thanks.Best,Jeff",
"Conflict": true,
"Professional": true,
"Tone": false,
"Conflict Words %": 0.078125,
"Friendly Words %": 0.109375,
"Sentiment": 0.26875,
"Subject Sentiment": 0.0,
"Punctuation %": 0.0685785536159601
},
{
"Timestamp": "Mon, 26 Nov 2001 07:12:37 -0800 (PST)",
"Sender": "\tDasovich, Jeff Sent:\tWednesday, November 21, 2001 4:55 PM",
"Recipient": "jeff",
"Subject": "Conference Call with PG&E to Discuss the Gas Portion of Its",
"Text": "Barry and I would like to participate - Can you set up for this Thursday? -----Original Message-----Sent:\tWednesday, November 21, 2001 4:55 PMTo:\tTycholiz, Barry; Tribolet, Michael; Mellencamp, Lisa; Hass, Glen; Miller, Stephanie; Tholt, Jane M.; Lawner, Leslie; Cantrell, Rebecca W.; Steffes, James D.; Novosel, Sarah; Harris, Steven; Fossum, DrewSubject:\tConference Call with PG&E to Discuss the Gas Portion of Its Proposed Plan of Reorganization that It Will File w/FERC Toward End of NovemberPG&E called. They want to set up a conference call to brief us on the gas piece of their POR that they'll be filing with FERC around November 30th. They want to try to do it in the next couple of weeks. Please let me know if you're interested and please pass this along to anyone else who might be interested. Thanks.Best,Jeff",
"Conflict": true,
"Professional": true,
"Tone": false,
"Conflict Words %": 0.08148148148148149,
"Friendly Words %": 0.0962962962962963,
"Sentiment": 0.3125,
"Subject Sentiment": 0.0,
"Punctuation %": 0.06666666666666667
},
{
"Timestamp": "Mon, 26 Nov 2001 07:21:28 -0800 (PST)",
"Sender": "\tDasovich, Jeff Sent:\tWednesday, November 21, 2001 3:55 PM",
"Recipient": "jeff",
"Subject": "Conference Call with PG&E to Discuss the Gas Portion of Its",
"Text": "Yes, I would be interested in this call. -----Original Message-----Sent:\tWednesday, November 21, 2001 3:55 PMTo:\tTycholiz, Barry; Tribolet, Michael; Mellencamp, Lisa; Hass, Glen; Miller, Stephanie; Tholt, Jane M.; Lawner, Leslie; Cantrell, Rebecca W.; Steffes, James D.; Novosel, Sarah; Harris, Steven; Fossum, DrewSubject:\tConference Call with PG&E to Discuss the Gas Portion of Its Proposed Plan of Reorganization that It Will File w/FERC Toward End of NovemberPG&E called. They want to set up a conference call to brief us on the gas piece of their POR that they'll be filing with FERC around November 30th. They want to try to do it in the next couple of weeks. Please let me know if you're interested and please pass this along to anyone else who might be interested. Thanks.Best,Jeff",
"Conflict": true,
"Professional": true,
"Tone": false,
"Conflict Words %": 0.0859375,
"Friendly Words %": 0.1015625,
"Sentiment": 0.2916666666666667,
"Subject Sentiment": 0.0,
"Punctuation %": 0.06944444444444445
},
{
"Timestamp": "Mon, 26 Nov 2001 12:36:36 -0800 (PST)",
"Sender": "\tDasovich, Jeff Sent:\tWednesday, November 21, 2001 4:55 PM",
"Recipient": "glen",
"Subject": "Conference Call with PG&E to Discuss the Gas Portion of Its",
"Text": "Yes we would like to participate -----Original Message-----Sent:\tMonday, November 26, 2001 2:07 PMTo:\tHarris, Steven; Kilmer III, RobertI would recommend that we participate. In addition to myself we may want Steve V and/or Teb to also attend as they explain their FERC filing for making the backbone system jurisdictional. Let me know if you concur and then I'll advise Jeff. Thanks--gh -----Original Message-----Sent:\tWednesday, November 21, 2001 4:55 PMTo:\tTycholiz, Barry; Tribolet, Michael; Mellencamp, Lisa; Hass, Glen; Miller, Stephanie; Tholt, Jane M.; Lawner, Leslie; Cantrell, Rebecca W.; Steffes, James D.; Novosel, Sarah; Harris, Steven; Fossum, DrewSubject:\tConference Call with PG&E to Discuss the Gas Portion of Its Proposed Plan of Reorganization that It Will File w/FERC Toward End of NovemberPG&E called. They want to set up a conference call to brief us on the gas piece of their POR that they'll be filing with FERC around November 30th. They want to try to do it in the next couple of weeks. Please let me know if you're interested and please pass this along to anyone else who might be interested. Thanks.Best,Jeff",
"Conflict": true,
"Professional": true,
"Tone": false,
"Conflict Words %": 0.08196721311475409,
"Friendly Words %": 0.08196721311475409,
"Sentiment": 0.3333333333333333,
"Subject Sentiment": 0.0,
"Punctuation %": 0.06830122591943957
},
{
"Timestamp": "Mon, 26 Nov 2001 13:02:00 -0800 (PST)",
"Sender": "\tDasovich, Jeff Sent:\tWednesday, November 21, 2001 4:55 PM",
"Recipient": "jeff",
"Subject": "Conference Call with PG&E to Discuss the Gas Portion of Its",
"Text": "Jeff,Thanks for the invite. Yes, we would like to participate in the conf. call. The only definite conflict I have is on Dec. 3 & 4 as I will be traveling to SF for SoCal's BCAP PHC. Let me know the scheduled time etc, as I will probably have some of our regulatory people also sit in on the conference. Thanks again.Glen -----Original Message-----Sent:\tWednesday, November 21, 2001 4:55 PMTo:\tTycholiz, Barry; Tribolet, Michael; Mellencamp, Lisa; Hass, Glen; Miller, Stephanie; Tholt, Jane M.; Lawner, Leslie; Cantrell, Rebecca W.; Steffes, James D.; Novosel, Sarah; Harris, Steven; Fossum, DrewSubject:\tConference Call with PG&E to Discuss the Gas Portion of Its Proposed Plan of Reorganization that It Will File w/FERC Toward End of NovemberPG&E called. They want to set up a conference call to brief us on the gas piece of their POR that they'll be filing with FERC around November 30th. They want to try to do it in the next couple of weeks. Please let me know if you're interested and please pass this along to anyone else who might be interested. Thanks.Best,Jeff",
"Conflict": true,
"Professional": true,
"Tone": false,
"Conflict Words %": 0.12299465240641712,
"Friendly Words %": 0.09090909090909091,
"Sentiment": 0.26875,
"Subject Sentiment": 0.0,
"Punctuation %": 0.06029684601113173
}
],
"thread306": [
{
"conflict": "no",
"professional": "no",
"tone": "relaxed"
},
{
"Timestamp": "Mon, 10 Sep 2001 09:31:37 -0700 (PDT)",
"Recipient": "joseph",
"Subject": "New fax number for Paul Kaufman & Lysa Tracy",
"Text": "FYI.....see below. Ginger Dernehl Administrative Coordinator Global Government Affairs Phone# 713-853-7751 Fax# 713-646-8160 ",
"Conflict": false,
"Professional": false,
"Tone": false,
"Conflict Words %": 0.07142857142857142,
"Friendly Words %": 0.0,
"Subject Sentiment": 0.13636363636363635,
"Punctuation %": 0.096
},
{
"Sender": "Tracy, Lysa ",
"Recipient": "Dernehl, Ginger",
"Subject": "New fax number for Paul Kaufman & Lysa Tracy",
"Conflict": false,
"Professional": false,
"Tone": false,
"Subject Sentiment": 0.13636363636363635
},
{
"Timestamp": "Mon, 10 Sep 2001 13:44:50 -0700 (PDT)",
"Recipient": "ginger",
"Subject": "New fax number for Paul Kaufman & Lysa Tracy",
"Text": "Actually, while we've all got our address books out let me tell you that th=e best fax number for me is=20=20530-327-9235=20Note the different area code.=20Thanks,=20Alan Comnes",
"Conflict": false,
"Professional": false,
"Tone": false,
"Conflict Words %": 0.07692307692307693,
"Friendly Words %": 0.07692307692307693,
"Sentiment": 0.3333333333333333,
"Subject Sentiment": 0.13636363636363635,
"Punctuation %": 0.06779661016949153
},
{
"Sender": "Tracy, Lysa=20",
"Recipient": "Dernehl, Ginger",
"Subject": "New fax number for Paul Kaufman & Lysa Tracy",
"Conflict": false,
"Professional": false,
"Tone": false,
"Subject Sentiment": 0.13636363636363635
}
],
"thread307": [
{
"conflict": "no",
"professional": "yes",
"tone": "stern"
},
{
"Timestamp": "Tue, 27 Nov 2001 06:57:50 -0800 (PST)",
"Recipient": "joseph",
"Subject": "Global Government Affairs Department Conference Call",
"Text": "Rick will hold a Government Affairs department conference call tomorrow as follows. Please mark your calendars accordingly.Date:\t\tWednesday, November 28Time:\t\t4:00 PM (CST)Number:\t800-745-1000 (domestic)\t\t801-977-0648 (int'l)\t\t8533407 (passcode)Location:\tECN 4701 (for those in Houston)Thanks!!!Ginger DernehlAdministrative CoordinatorGlobal Government AffairsPhone# 713-853-7751Fax# 713-646-8160",
"Conflict": false,
"Professional": true,
"Tone": true,
"Conflict Words %": 0.08333333333333333,
"Friendly Words %": 0.027777777777777776,
"Subject Sentiment": 0.0,
"Punctuation %": 0.08060453400503778
},