epstein-files 1.0.0__py3-none-any.whl → 1.0.2__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- epstein_files/__init__.py +75 -135
- epstein_files/documents/communication.py +9 -9
- epstein_files/documents/document.py +115 -87
- epstein_files/documents/email.py +154 -85
- epstein_files/documents/emails/email_header.py +7 -6
- epstein_files/documents/imessage/text_message.py +3 -2
- epstein_files/documents/json_file.py +17 -0
- epstein_files/documents/messenger_log.py +62 -3
- epstein_files/documents/other_file.py +165 -17
- epstein_files/epstein_files.py +128 -169
- epstein_files/util/constant/names.py +8 -1
- epstein_files/util/constant/output_files.py +29 -0
- epstein_files/util/constant/strings.py +27 -0
- epstein_files/util/constant/urls.py +25 -9
- epstein_files/util/constants.py +1018 -1045
- epstein_files/util/data.py +20 -55
- epstein_files/util/{file_cfg.py → doc_cfg.py} +121 -43
- epstein_files/util/env.py +19 -20
- epstein_files/util/file_helper.py +38 -21
- epstein_files/util/highlighted_group.py +229 -177
- epstein_files/util/logging.py +63 -0
- epstein_files/util/output.py +180 -0
- epstein_files/util/rich.py +29 -17
- epstein_files/util/search_result.py +14 -6
- epstein_files/util/timer.py +24 -0
- epstein_files/util/word_count.py +2 -1
- {epstein_files-1.0.0.dist-info → epstein_files-1.0.2.dist-info}/METADATA +20 -4
- epstein_files-1.0.2.dist-info/RECORD +33 -0
- epstein_files-1.0.2.dist-info/entry_points.txt +7 -0
- epstein_files-1.0.0.dist-info/RECORD +0 -28
- {epstein_files-1.0.0.dist-info → epstein_files-1.0.2.dist-info}/LICENSE +0 -0
- {epstein_files-1.0.0.dist-info → epstein_files-1.0.2.dist-info}/WHEEL +0 -0
epstein_files/util/constants.py
CHANGED
|
@@ -5,22 +5,10 @@ from dateutil.parser import parse
|
|
|
5
5
|
|
|
6
6
|
from epstein_files.util.constant.names import *
|
|
7
7
|
from epstein_files.util.constant.strings import *
|
|
8
|
-
from epstein_files.util.
|
|
8
|
+
from epstein_files.util.doc_cfg import DocCfg, EmailCfg, TextCfg
|
|
9
|
+
from epstein_files.util.logging import logger
|
|
9
10
|
|
|
10
|
-
# Misc
|
|
11
11
|
FALLBACK_TIMESTAMP = parse("1/1/2051 12:01:01 AM")
|
|
12
|
-
RESUME_OF = 'professional resumé of'
|
|
13
|
-
SENT_FROM_REGEX = re.compile(r'^(?:(Please forgive|Sorry for all the) typos.{1,4})?(Sent (from|via).*(and string|AT&T|Droid|iPad|Phone|Mail|BlackBerry(.*(smartphone|device|Handheld|AT&T|T- ?Mobile))?)\.?)', re.M | re.I)
|
|
14
|
-
|
|
15
|
-
# Email reply regexes (has to be here for circular dependencies reasons)
|
|
16
|
-
FORWARDED_LINE_PATTERN = r"-+ ?(Forwarded|Original)\s*Message ?-*|Begin forwarded message:?"
|
|
17
|
-
REPLY_LINE_IN_A_MSG_PATTERN = r"In a message dated \d+/\d+/\d+.*writes:"
|
|
18
|
-
REPLY_LINE_ENDING_PATTERN = r"[_ \n](AM|PM|[<_]|wrote:?)"
|
|
19
|
-
REPLY_LINE_ON_NUMERIC_DATE_PATTERN = fr"On \d+/\d+/\d+[, ].*{REPLY_LINE_ENDING_PATTERN}"
|
|
20
|
-
REPLY_LINE_ON_DATE_PATTERN = fr"^On (\d+ )?((Mon|Tues?|Wed(nes)?|Thu(rs)?|Fri|Sat(ur)?|Sun)(day)?|(Jan|Feb|Mar|Apr|May|Jun|Jul|Aug|Sep|Oct|Nov|Dec)\w*)[, ].*{REPLY_LINE_ENDING_PATTERN}"
|
|
21
|
-
REPLY_LINE_PATTERN = rf"({REPLY_LINE_IN_A_MSG_PATTERN}|{REPLY_LINE_ON_NUMERIC_DATE_PATTERN}|{REPLY_LINE_ON_DATE_PATTERN}|{FORWARDED_LINE_PATTERN})"
|
|
22
|
-
REPLY_REGEX = re.compile(REPLY_LINE_PATTERN, re.IGNORECASE | re.MULTILINE)
|
|
23
|
-
|
|
24
12
|
|
|
25
13
|
HEADER_ABBREVIATIONS = {
|
|
26
14
|
"AD": "Abu Dhabi",
|
|
@@ -80,6 +68,7 @@ EMAILER_ID_REGEXES: dict[str, re.Pattern] = {
|
|
|
80
68
|
DANNY_FROST: re.compile(r'Frost, Danny|frostd@dany.nyc.gov', re.IGNORECASE),
|
|
81
69
|
DARREN_INDYKE: re.compile(r'darren$|Darren\s*(K\.?\s*)?[il]n[dq]_?yke?|dkiesq', re.IGNORECASE),
|
|
82
70
|
DAVID_FISZEL: re.compile(r'David\s*Fis?zel', re.IGNORECASE),
|
|
71
|
+
DAVID_HAIG: re.compile(fr'{DAVID_HAIG}|Haig, David', re.IGNORECASE),
|
|
83
72
|
DAVID_STERN: re.compile(r'David Stern?', re.IGNORECASE),
|
|
84
73
|
EDUARDO_ROBLES: re.compile(r'Ed(uardo)?\s*Robles', re.IGNORECASE),
|
|
85
74
|
EDWARD_JAY_EPSTEIN: re.compile(r'Edward (Jay )?Epstein', re.IGNORECASE),
|
|
@@ -96,6 +85,7 @@ EMAILER_ID_REGEXES: dict[str, re.Pattern] = {
|
|
|
96
85
|
JEAN_LUC_BRUNEL: re.compile(r'Jean[- ]Luc Brunel?', re.IGNORECASE),
|
|
97
86
|
JEFF_FULLER: re.compile(r"jeff@mc2mm.com|Jeff Fuller", re.IGNORECASE),
|
|
98
87
|
JEFFREY_EPSTEIN: re.compile(r'[djl]ee[vy]acation[©@]?g?(mail.com)?|Epstine|\bJEE?\b|Jeffrey E((sp|ps)tein?)?|jeeproject@yahoo.com|J Jep|Jeffery Edwards|(?<!Mark L. )Epstein', re.IGNORECASE),
|
|
88
|
+
JESSICA_CADWELL: re.compile(r'Jessica Cadwell?', re.IGNORECASE),
|
|
99
89
|
JOHNNY_EL_HACHEM: re.compile(r'el hachem johnny|johnny el hachem', re.IGNORECASE),
|
|
100
90
|
JOI_ITO: re.compile(r'ji@media.mit.?edu|(joichi|joi)( Ito)?', re.IGNORECASE),
|
|
101
91
|
JONATHAN_FARKAS: re.compile(r'Jonathan Farka(s|il)', re.IGNORECASE),
|
|
@@ -168,6 +158,7 @@ EMAILERS = [
|
|
|
168
158
|
DANIEL_SABBA,
|
|
169
159
|
'Danny Goldberg',
|
|
170
160
|
DAVID_SCHOEN,
|
|
161
|
+
DEBBIE_FEIN,
|
|
171
162
|
DEEPAK_CHOPRA,
|
|
172
163
|
GLENN_DUBIN,
|
|
173
164
|
GORDON_GETTY,
|
|
@@ -175,7 +166,6 @@ EMAILERS = [
|
|
|
175
166
|
JACK_SCAROLA,
|
|
176
167
|
JAY_LEFKOWITZ,
|
|
177
168
|
JES_STALEY,
|
|
178
|
-
JESSICA_CADWELL,
|
|
179
169
|
JOHN_PAGE,
|
|
180
170
|
'Jokeland',
|
|
181
171
|
JOSCHA_BACH,
|
|
@@ -215,92 +205,85 @@ for emailer in EMAILERS:
|
|
|
215
205
|
|
|
216
206
|
EMAILER_REGEXES[emailer] = re.compile(emailer, re.IGNORECASE)
|
|
217
207
|
|
|
218
|
-
# Some emails have a lot of uninteresting CCs
|
|
219
|
-
IRAN_NUCLEAR_DEAL_SPAM_EMAIL_RECIPIENTS: list[str | None] = ['Allen West', 'Rafael Bardaji', 'Philip Kafka', 'Herb Goodman', 'Grant Seeger', 'Lisa Albert', 'Janet Kafka', 'James Ramsey', 'ACT for America', 'John Zouzelka', 'Joel Dunn', 'Nate McClain', 'Bennet Greenwald', 'Taal Safdie', 'Uri Fouzailov', 'Neil Anderson', 'Nate White', 'Rita Hortenstine', 'Henry Hortenstine', 'Gary Gross', 'Forrest Miller', 'Bennett Schmidt', 'Val Sherman', 'Marcie Brown', 'Michael Horowitz', 'Marshall Funk']
|
|
220
|
-
KRASSNER_MANSON_RECIPIENTS: list[str | None] = ['Nancy Cain', 'Tom', 'Marie Moneysmith', 'Steven Gaydos', 'George Krassner', 'Linda W. Grossman', 'Holly Krassner Dawson', 'Daniel Dawson', 'Danny Goldberg', 'Caryl Ratner', 'Kevin Bright', 'Michael Simmons', SAMUEL_LEFF, 'Bob Fass', 'Lynnie Tofte Fass', 'Barb Cowles', 'Lee Quarnstrom']
|
|
221
|
-
KRASSNER_024923_RECIPIENTS: list[str | None] = ['George Krassner', 'Nick Kazan', 'Mrisman02', 'Rebecca Risman', 'Linda W. Grossman']
|
|
222
|
-
KRASSNER_033568_RECIPIENTS: list[str | None] = ['George Krassner', 'Daniel Dawson', 'Danny Goldberg', 'Tom', 'Kevin Bright', 'Walli Leff', 'Michael Simmons', 'Lee Quarnstrom', 'Lanny Swerdlow', 'Larry Sloman', 'W&K', 'Harry Shearer', 'Jay Levin']
|
|
223
|
-
FLIGHT_IN_2012_PEOPLE: list[str | None] = ['Francis Derby', 'Januiz Banasiak', 'Louella Rabuyo', 'Richard Barnnet']
|
|
224
|
-
|
|
225
208
|
|
|
226
209
|
##########################
|
|
227
|
-
# OtherFile
|
|
210
|
+
# OtherFile config stuff #
|
|
228
211
|
##########################
|
|
229
|
-
|
|
212
|
+
|
|
213
|
+
# strings
|
|
230
214
|
FBI = 'FBI'
|
|
231
|
-
FLIGHT_LOGS = 'flight logs'
|
|
232
215
|
MEME = 'meme of'
|
|
233
216
|
PRESS_RELEASE = 'press release'
|
|
234
|
-
|
|
217
|
+
RESUME_OF = 'professional resumé'
|
|
235
218
|
SCREENSHOT = 'screenshot of'
|
|
236
219
|
TRANSLATION = 'translation of'
|
|
237
220
|
TWEET = 'tweet'
|
|
238
221
|
TEXT_OF_US_LAW = 'text of U.S. law:'
|
|
239
222
|
|
|
240
|
-
#
|
|
241
|
-
BRUNEL_V_EPSTEIN = f"{JEAN_LUC_BRUNEL} v. {JEFFREY_EPSTEIN}"
|
|
242
|
-
EDWARDS_V_DERSHOWITZ = f"{BRAD_EDWARDS} & {PAUL_G_CASSELL} v. {ALAN_DERSHOWITZ}
|
|
243
|
-
EPSTEIN_V_ROTHSTEIN_EDWARDS = f"Epstein v. Scott Rothstein, {BRAD_EDWARDS}, and L.M
|
|
244
|
-
GIUFFRE_V_DERSHOWITZ = f"{VIRGINIA_GIUFFRE} v. {ALAN_DERSHOWITZ}
|
|
245
|
-
GIUFFRE_V_EPSTEIN = f"{VIRGINIA_GIUFFRE} v. {JEFFREY_EPSTEIN}
|
|
246
|
-
GIUFFRE_V_MAXWELL = f"{VIRGINIA_GIUFFRE} v. {GHISLAINE_MAXWELL}
|
|
247
|
-
JANE_DOE_V_EPSTEIN_TRUMP = f"Jane Doe v. Donald Trump and {JEFFREY_EPSTEIN}
|
|
248
|
-
JANE_DOE_V_USA = 'Jane Doe #1 and Jane Doe #2 v. United States
|
|
249
|
-
NEW_YORK_V_EPSTEIN = f"New York v. {JEFFREY_EPSTEIN}
|
|
223
|
+
# Legal cases
|
|
224
|
+
BRUNEL_V_EPSTEIN = f"{JEAN_LUC_BRUNEL} v. {JEFFREY_EPSTEIN} and Tyler McDonald d/b/a YI.org"
|
|
225
|
+
EDWARDS_V_DERSHOWITZ = f"{BRAD_EDWARDS} & {PAUL_G_CASSELL} v. {ALAN_DERSHOWITZ}"
|
|
226
|
+
EPSTEIN_V_ROTHSTEIN_EDWARDS = f"Epstein v. Scott Rothstein, {BRAD_EDWARDS}, and L.M."
|
|
227
|
+
GIUFFRE_V_DERSHOWITZ = f"{VIRGINIA_GIUFFRE} v. {ALAN_DERSHOWITZ}"
|
|
228
|
+
GIUFFRE_V_EPSTEIN = f"{VIRGINIA_GIUFFRE} v. {JEFFREY_EPSTEIN}"
|
|
229
|
+
GIUFFRE_V_MAXWELL = f"{VIRGINIA_GIUFFRE} v. {GHISLAINE_MAXWELL}"
|
|
230
|
+
JANE_DOE_V_EPSTEIN_TRUMP = f"Jane Doe v. Donald Trump and {JEFFREY_EPSTEIN}"
|
|
231
|
+
JANE_DOE_V_USA = 'Jane Doe #1 and Jane Doe #2 v. United States'
|
|
232
|
+
NEW_YORK_V_EPSTEIN = f"New York v. {JEFFREY_EPSTEIN}"
|
|
250
233
|
|
|
251
234
|
# Descriptions of non-email, non-text message files
|
|
252
235
|
ARTICLE_DRAFT = 'draft of an article about'
|
|
253
|
-
BOFA = 'BofA'
|
|
254
236
|
BOFA_MERRILL = f'{BOFA} / Merrill Lynch Report'
|
|
255
237
|
BOFA_WEALTH_MGMT = f'{BOFA} Wealth Management'
|
|
256
|
-
|
|
238
|
+
BROCKMAN_INC = 'Brockman, Inc.'
|
|
257
239
|
CVRA = "Crime Victims' Rights Act [CVRA]"
|
|
258
240
|
DAVID_BLAINE_VISA_LETTER = f"letter of recommendation for visa for a model"
|
|
259
241
|
DAVID_SCHOEN_CVRA_LEXIS_SEARCH = f"Lexis Nexis search for case law around the {CVRA} by {DAVID_SCHOEN}"
|
|
260
|
-
|
|
261
|
-
DERSH_GIUFFRE_TWEET = f"{TWEET} by {ALAN_DERSHOWITZ} about {VIRGINIA_GIUFFRE}"
|
|
242
|
+
DERSH_GIUFFRE_TWEET = f"{TWEET} about {VIRGINIA_GIUFFRE}"
|
|
262
243
|
DEUTSCHE_BANK_TAX_TOPICS = f'{DEUTSCHE_BANK} Wealth Management Tax Topics'
|
|
263
|
-
|
|
244
|
+
DIANA_DEGETTE_CAMPAIGN = "Colorado legislator Diana DeGette's campaign"
|
|
264
245
|
EPSTEIN_FOUNDATION = 'Jeffrey Epstein VI Foundation'
|
|
265
246
|
FBI_REPORT = f"{FBI} report on Epstein investigation (redacted)"
|
|
266
247
|
FBI_SEIZED_PROPERTY = f"{FBI} seized property inventory (redacted)"
|
|
267
248
|
FEMALE_HEALTH_COMPANY = 'Female Health Company (FHX)'
|
|
268
|
-
FIRE_AND_FURY = f"
|
|
269
|
-
GOLDMAN_REPORT = f'{GOLDMAN_SACHS} Investment Management Division report'
|
|
249
|
+
FIRE_AND_FURY = f"Fire And Fury"
|
|
270
250
|
HARVARD_POETRY = f'{HARVARD} poetry stuff from {LISA_NEW}'
|
|
271
|
-
|
|
251
|
+
HBS_APPLICATION = f"{HARVARD} Business School application letter"
|
|
272
252
|
JASTA = 'JASTA'
|
|
273
253
|
JASTA_SAUDI_LAWSUIT = f"{JASTA} lawsuit against Saudi Arabia by 9/11 victims"
|
|
274
254
|
JOHN_BOLTON_PRESS_CLIPPING = 'John Bolton press clipping'
|
|
275
|
-
JP_MORGAN_EYE_ON_THE_MARKET = f"
|
|
255
|
+
JP_MORGAN_EYE_ON_THE_MARKET = f"Eye On The Market"
|
|
256
|
+
LAWRENCE_KRAUSS_ASU_ORIGINS = f"{LAWRENCE_KRAUSS}'s ASU Origins Project"
|
|
276
257
|
KEN_STARR_LETTER = f"letter to judge overseeing Epstein's criminal prosecution, mentions Alex Acosta"
|
|
277
258
|
MICHAEL_WOLFF_ARTICLE_HINT = f"draft of an unpublished article about Epstein by {MICHAEL_WOLFF} written ca. 2014/2015"
|
|
278
|
-
|
|
259
|
+
NERIO_ALESSANDRI = 'Nerio Alessandri (Founder and Chairman of Technogym S.p.A. Italy)'
|
|
260
|
+
NIGHT_FLIGHT_BOOK = f'"Night Flight" (draft)'
|
|
279
261
|
NOBEL_CHARITABLE_TRUST = 'Nobel Charitable Trust'
|
|
280
262
|
OBAMA_JOKE = 'joke about Obama'
|
|
281
|
-
PALM_BEACH = 'Palm Beach'
|
|
282
263
|
PALM_BEACH_CODE_ENFORCEMENT = f'{PALM_BEACH} code enforcement board minutes'
|
|
283
264
|
PALM_BEACH_DAILY_ARTICLE = f'{PALM_BEACH} Daily News article about'
|
|
284
265
|
PALM_BEACH_POST_ARTICLE = f'{PALM_BEACH} Post article about'
|
|
285
266
|
PALM_BEACH_TSV = f"TSV of {PALM_BEACH} property"
|
|
286
267
|
PALM_BEACH_WATER_COMMITTEE = f'{PALM_BEACH} Water Committee'
|
|
287
|
-
PATTERSON_BOOK_SCANS = f
|
|
268
|
+
PATTERSON_BOOK_SCANS = f'pages of "Filthy Rich: The Shocking True Story of {JEFFREY_EPSTEIN}"'
|
|
288
269
|
SHIMON_POST = 'The Shimon Post'
|
|
289
270
|
SHIMON_POST_ARTICLE = f'{SHIMON_POST} selection of articles about the mideast'
|
|
290
271
|
SINGLE_PAGE = 'single page of'
|
|
272
|
+
STRANGE_BEDFELLOWS = "'Strange Bedfellows' list of invitees f. Johnny Depp, Woody Allen, Obama, and more"
|
|
291
273
|
SWEDISH_LIFE_SCIENCES_SUMMIT = f"{BARBRO_C_EHNBOM}'s Swedish American Life Science Summit"
|
|
292
274
|
THE_REAL_DEAL_ARTICLE = 'article by Keith Larsen'
|
|
293
275
|
TRUMP_DISCLOSURES = f"Donald Trump financial disclosures from U.S. Office of Government Ethics"
|
|
294
|
-
UBS = 'UBS'
|
|
295
276
|
UBS_CIO_REPORT = 'CIO Monthly Extended report'
|
|
277
|
+
UN_GENERAL_ASSEMBLY = '67th U.N. General Assembly'
|
|
296
278
|
VI_DAILY_NEWS_ARTICLE = f'{VIRGIN_ISLANDS} Daily News article'
|
|
297
|
-
WOMEN_EMPOWERMENT = f"Women Empowerment (WE) conference
|
|
279
|
+
WOMEN_EMPOWERMENT = f"Women Empowerment (WE) conference"
|
|
298
280
|
ZUBAIR_AND_ANYA = f"{ZUBAIR_KHAN} and Anya Rasulova"
|
|
299
281
|
|
|
300
282
|
# Atribution reasons
|
|
301
283
|
BOLOTOVA_REASON = 'Same signature style as 029020 ("--" followed by "Sincerely Renata Bolotova")'
|
|
302
284
|
KATHY_REASON = 'from "Kathy" about dems, sent from iPad'
|
|
303
285
|
LARRY_REASON = 'Planes discussion signed "Larry"'
|
|
286
|
+
PARTICIPANTS_FIELD = 'Participants: field'
|
|
304
287
|
PAULA_REASON = 'Signature of "Sent via BlackBerry from T-Mobile"'
|
|
305
288
|
|
|
306
289
|
|
|
@@ -308,506 +291,494 @@ PAULA_REASON = 'Signature of "Sent via BlackBerry from T-Mobile"'
|
|
|
308
291
|
############################################ TEXTS #############################################
|
|
309
292
|
################################################################################################
|
|
310
293
|
|
|
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
|
-
|
|
294
|
+
CONFIRMED_TEXTS_CONFIG = [
|
|
295
|
+
TextCfg(id='031042', author=ANIL_AMBANI, attribution_reason=PARTICIPANTS_FIELD),
|
|
296
|
+
TextCfg(id='027225', author=ANIL_AMBANI, attribution_reason="birthday mentioned in texts is confirmed as Ambani's"),
|
|
297
|
+
TextCfg(id='031054', author=ANTHONY_SCARAMUCCI, attribution_reason="Scaramucci's phone number is at top of raw file"),
|
|
298
|
+
TextCfg(id='027333', author=ANTHONY_SCARAMUCCI, attribution_reason="Scaramucci's phone number is in one of the messages"),
|
|
299
|
+
TextCfg(id='031173', author=ARDA_BESKARDES, attribution_reason=PARTICIPANTS_FIELD),
|
|
300
|
+
TextCfg(id='027401', author='Eva (Dubin?)', attribution_reason=PARTICIPANTS_FIELD),
|
|
301
|
+
TextCfg(id='027650', author=JOI_ITO, attribution_reason=PARTICIPANTS_FIELD),
|
|
302
|
+
TextCfg(id='027777', author=LARRY_SUMMERS, attribution_reason=PARTICIPANTS_FIELD),
|
|
303
|
+
TextCfg(id='027515', author=MIROSLAV_LAJCAK, attribution_reason='https://x.com/ImDrinknWyn/status/1990210266114789713'),
|
|
304
|
+
TextCfg(id='027165', author=MELANIE_WALKER, attribution_reason='https://www.wired.com/story/jeffrey-epstein-claimed-intimate-knowledge-of-donald-trumps-views-in-texts-with-bill-gates-adviser/'),
|
|
305
|
+
TextCfg(id='027248', author=MELANIE_WALKER, attribution_reason='says "we met through Trump" which is confirmed by Melanie in 032803'),
|
|
306
|
+
TextCfg(id='025429', author=STACEY_PLASKETT, attribution_reason='widely reported'),
|
|
307
|
+
TextCfg(id='027128', author=SOON_YI_PREVIN, attribution_reason='https://x.com/ImDrinknWyn/status/1990227281101434923'),
|
|
308
|
+
TextCfg(id='027217', author=SOON_YI_PREVIN, attribution_reason='refs marriage to Woody Allen'),
|
|
309
|
+
TextCfg(id='027244', author=SOON_YI_PREVIN, attribution_reason='refs Woody Allen'),
|
|
310
|
+
TextCfg(id='027257', author=SOON_YI_PREVIN, attribution_reason=f"Woody Allen in {PARTICIPANTS_FIELD}"),
|
|
311
|
+
TextCfg(id='027460', author=STEVE_BANNON, attribution_reason='Discusses leaving scotland when Bannon was confirmed in Scotland, also NYT'),
|
|
312
|
+
TextCfg(id='027307', author=STEVE_BANNON, attribution_reason='texts mention "Epstein Bannon Kurz"'),
|
|
313
|
+
TextCfg(id='027278', author=TERJE_ROD_LARSEN, attribution_reason=PARTICIPANTS_FIELD),
|
|
314
|
+
TextCfg(id='027255', author=TERJE_ROD_LARSEN, attribution_reason=PARTICIPANTS_FIELD),
|
|
315
|
+
]
|
|
316
|
+
|
|
317
|
+
UNCONFIRMED_TEXTS_CONFIG = [
|
|
318
|
+
TextCfg(id='027762', author=ANDRZEJ_DUDA, attribution_reason=f"Duda in NY at that time, took train"),
|
|
319
|
+
TextCfg(id='027774', author=ANDRZEJ_DUDA, attribution_reason=f"Duda in NY at that time, took train"),
|
|
320
|
+
TextCfg(id='027221', author=ANIL_AMBANI),
|
|
321
|
+
TextCfg(id='027396', author=ANTHONY_SCARAMUCCI, attribution_reason='says "I need to make peace with Bannon"'),
|
|
322
|
+
TextCfg(id='025436', author=CELINA_DUBIN),
|
|
323
|
+
TextCfg(id='027576', author=MELANIE_WALKER, attribution_reason='https://www.ahajournals.org/doi/full/10.1161/STROKEAHA.118.023700'),
|
|
324
|
+
TextCfg(id='027141', author=MELANIE_WALKER),
|
|
325
|
+
TextCfg(id='027232', author=MELANIE_WALKER),
|
|
326
|
+
TextCfg(id='027133', author=MELANIE_WALKER),
|
|
327
|
+
TextCfg(id='027184', author=MELANIE_WALKER),
|
|
328
|
+
TextCfg(id='027214', author=MELANIE_WALKER),
|
|
329
|
+
TextCfg(id='027148', author=MELANIE_WALKER),
|
|
330
|
+
TextCfg(id='027440', author=MICHAEL_WOLFF, attribution_reason='AI says Trump book/journalism project'),
|
|
331
|
+
TextCfg(id='025363', author=STEVE_BANNON, attribution_reason='Trump and New York Times coverage'),
|
|
332
|
+
TextCfg(id='025368', author=STEVE_BANNON, attribution_reason='Trump and New York Times coverage'),
|
|
333
|
+
TextCfg(id='027585', author=STEVE_BANNON, attribution_reason='references Tokyo trip'),
|
|
334
|
+
TextCfg(id='027568', author=STEVE_BANNON),
|
|
335
|
+
TextCfg(id='027695', author=STEVE_BANNON),
|
|
336
|
+
TextCfg(id='027594', author=STEVE_BANNON),
|
|
337
|
+
TextCfg(id='027720', author=STEVE_BANNON, attribution_reason='first 3 lines of 027722'),
|
|
338
|
+
TextCfg(id='027549', author=STEVE_BANNON),
|
|
339
|
+
TextCfg(id='027434', author=STEVE_BANNON, attribution_reason='references Maher appearance'),
|
|
340
|
+
TextCfg(id='027764', author=STEVE_BANNON),
|
|
341
|
+
TextCfg(id='027428', author=STEVE_BANNON, attribution_reason='references HBJ meeting on 9/28 from other Bannon/Epstein convo'),
|
|
342
|
+
TextCfg(id='025400', author=STEVE_BANNON, attribution_reason='AI says Trump NYT article criticism; Hannity media strategy'),
|
|
343
|
+
TextCfg(id='025408', author=STEVE_BANNON, attribution_reason='AI says Trump and New York Times coverage'),
|
|
344
|
+
TextCfg(id='025452', author=STEVE_BANNON, attribution_reason='AI says Trump and New York Times coverage'),
|
|
345
|
+
TextCfg(id='025479', author=STEVE_BANNON, attribution_reason='AI says China strategy and geopolitics; Trump discussions'),
|
|
346
|
+
TextCfg(id='025707', author=STEVE_BANNON, attribution_reason='AI says Trump and New York Times coverage'),
|
|
347
|
+
TextCfg(id='025734', author=STEVE_BANNON, attribution_reason='AI says China strategy and geopolitics; Trump discussions'),
|
|
348
|
+
TextCfg(id='027260', author=STEVE_BANNON, attribution_reason='AI says Trump and New York Times coverage'),
|
|
349
|
+
TextCfg(id='027281', author=STEVE_BANNON, attribution_reason='AI says Trump and New York Times coverage'),
|
|
350
|
+
TextCfg(id='027346', author=STEVE_BANNON, attribution_reason='AI says Trump and New York Times coverage'),
|
|
351
|
+
TextCfg(id='027365', author=STEVE_BANNON, attribution_reason='AI says Trump and New York Times coverage'),
|
|
352
|
+
TextCfg(id='027374', author=STEVE_BANNON, attribution_reason='AI says China strategy and geopolitics'),
|
|
353
|
+
TextCfg(id='027406', author=STEVE_BANNON, attribution_reason='AI says Trump and New York Times coverage'),
|
|
354
|
+
TextCfg(id='027445', author=STEVE_BANNON, attribution_reason='AI says China strategy and geopolitics; Trump discussions'),
|
|
355
|
+
TextCfg(id='027455', author=STEVE_BANNON, attribution_reason='AI says China strategy and geopolitics; Trump discussions'),
|
|
356
|
+
TextCfg(id='027536', author=STEVE_BANNON, attribution_reason='AI says China strategy and geopolitics; Trump discussions'),
|
|
357
|
+
TextCfg(id='027655', author=STEVE_BANNON, attribution_reason='AI says Trump and New York Times coverage'),
|
|
358
|
+
TextCfg(id='027707', author=STEVE_BANNON, attribution_reason='AI says Italian politics; Trump discussions'),
|
|
359
|
+
TextCfg(id='027722', author=STEVE_BANNON, attribution_reason='AI says Trump and New York Times coverage'),
|
|
360
|
+
TextCfg(id='027735', author=STEVE_BANNON, attribution_reason='AI says Trump and New York Times coverage'),
|
|
361
|
+
TextCfg(id='027794', author=STEVE_BANNON, attribution_reason='AI says Trump and New York Times coverage'),
|
|
362
|
+
TextCfg(id='029744', author=STEVE_BANNON, attribution_reason='AI says Trump and New York Times coverage'),
|
|
363
|
+
TextCfg(id='031045', author=STEVE_BANNON, attribution_reason='AI says Trump and New York Times coverage'),
|
|
380
364
|
]
|
|
381
365
|
|
|
366
|
+
for cfg in UNCONFIRMED_TEXTS_CONFIG:
|
|
367
|
+
cfg.is_attribution_uncertain = True
|
|
368
|
+
|
|
369
|
+
TEXTS_CONFIG = CONFIRMED_TEXTS_CONFIG + UNCONFIRMED_TEXTS_CONFIG
|
|
370
|
+
|
|
382
371
|
|
|
383
|
-
|
|
384
|
-
################################################
|
|
385
|
-
|
|
372
|
+
########################################################################################################
|
|
373
|
+
################################################ EMAILS ################################################
|
|
374
|
+
########################################################################################################
|
|
375
|
+
|
|
376
|
+
# Some emails have a lot of uninteresting CCs
|
|
377
|
+
IRAN_NUCLEAR_DEAL_SPAM_EMAIL_RECIPIENTS: list[str | None] = ['Allen West', 'Rafael Bardaji', 'Philip Kafka', 'Herb Goodman', 'Grant Seeger', 'Lisa Albert', 'Janet Kafka', 'James Ramsey', 'ACT for America', 'John Zouzelka', 'Joel Dunn', 'Nate McClain', 'Bennet Greenwald', 'Taal Safdie', 'Uri Fouzailov', 'Neil Anderson', 'Nate White', 'Rita Hortenstine', 'Henry Hortenstine', 'Gary Gross', 'Forrest Miller', 'Bennett Schmidt', 'Val Sherman', 'Marcie Brown', 'Michael Horowitz', 'Marshall Funk']
|
|
378
|
+
FLIGHT_IN_2012_PEOPLE: list[str | None] = ['Francis Derby', 'Januiz Banasiak', 'Louella Rabuyo', 'Richard Barnnet']
|
|
386
379
|
|
|
387
380
|
EMAILS_CONFIG = [
|
|
388
|
-
|
|
389
|
-
|
|
390
|
-
|
|
391
|
-
|
|
392
|
-
|
|
393
|
-
|
|
394
|
-
|
|
381
|
+
EmailCfg(id='032436', author=ALIREZA_ITTIHADIEH, attribution_reason='Signature'),
|
|
382
|
+
EmailCfg(id='032543', author=ANAS_ALRASHEED, attribution_reason='Later reply 033000 has quote'),
|
|
383
|
+
EmailCfg(id='026064', author=ARIANE_DE_ROTHSCHILD, attribution_reason='signature'),
|
|
384
|
+
EmailCfg(id='026069', author=ARIANE_DE_ROTHSCHILD, attribution_reason='signature'),
|
|
385
|
+
EmailCfg(id='030741', author=ARIANE_DE_ROTHSCHILD, attribution_reason='signature'),
|
|
386
|
+
EmailCfg(id='026018', author=ARIANE_DE_ROTHSCHILD, attribution_reason='signature'),
|
|
387
|
+
EmailCfg(
|
|
395
388
|
id='029504',
|
|
396
389
|
author='Audrey/Aubrey Raimbault (???)',
|
|
397
|
-
attribution_reason='based on "GMI" in signature, a company registered by "
|
|
390
|
+
attribution_reason='based on "GMI" in signature, a company registered by "Aubrey Raimbault"',
|
|
398
391
|
),
|
|
399
|
-
|
|
400
|
-
|
|
401
|
-
|
|
402
|
-
|
|
403
|
-
|
|
404
|
-
|
|
405
|
-
|
|
406
|
-
|
|
392
|
+
EmailCfg(id='033316', author=AZIZA_ALAHMADI, attribution_reason='"Regards, Aziza" at bottom'),
|
|
393
|
+
EmailCfg(id='033328', author=AZIZA_ALAHMADI, attribution_reason='"Regards, Aziza" at bottom'),
|
|
394
|
+
EmailCfg(id='026659', author=BARBRO_C_EHNBOM, attribution_reason='Reply'),
|
|
395
|
+
EmailCfg(id='031215', author=BARBRO_C_EHNBOM, duplicate_ids=['026745'], dupe_type='redacted'), # the same except for 'your Anna!'. author must be specified because email address is redacted in 026745 so it needs the config
|
|
396
|
+
EmailCfg(id='026764', author=BARRY_J_COHEN), # Bad OCR (nofix)
|
|
397
|
+
EmailCfg(id='031206', author=BENNET_MOSKOWITZ, duplicate_ids=['031227']),
|
|
398
|
+
EmailCfg(id='031442', author=CHRISTINA_GALBRAITH, duplicate_ids=['031996']),
|
|
399
|
+
EmailCfg(
|
|
407
400
|
id='019446',
|
|
408
401
|
author=CHRISTINA_GALBRAITH,
|
|
409
402
|
attribution_reason='shows from "Christina media/PR" which fits',
|
|
410
403
|
is_attribution_uncertain=True,
|
|
411
404
|
),
|
|
412
|
-
|
|
413
|
-
|
|
405
|
+
EmailCfg(id='026625', author=DARREN_INDYKE, actual_text='Hysterical.'),
|
|
406
|
+
EmailCfg(
|
|
414
407
|
id='026624',
|
|
415
408
|
author=DARREN_INDYKE,
|
|
416
409
|
recipients=[JEFFREY_EPSTEIN],
|
|
417
410
|
timestamp=parse('2016-10-01 16:40:00'),
|
|
418
411
|
duplicate_ids=['031708'],
|
|
419
412
|
),
|
|
420
|
-
|
|
413
|
+
EmailCfg(
|
|
421
414
|
id='031278',
|
|
422
415
|
author=DARREN_INDYKE,
|
|
423
|
-
description=f"heavily redacted email, quoted replies are from {STEVEN_HOFFENBERG} about James Patterson's book",
|
|
416
|
+
description=f"heavily redacted email, quoted replies are from {STEVEN_HOFFENBERG} about James Patterson's book",
|
|
424
417
|
timestamp=parse('2016-08-17 11:26:00'),
|
|
425
418
|
attribution_reason='Quoted replies are in 019109',
|
|
426
419
|
),
|
|
427
|
-
|
|
428
|
-
|
|
429
|
-
|
|
430
|
-
|
|
431
|
-
|
|
432
|
-
|
|
433
|
-
|
|
434
|
-
|
|
435
|
-
|
|
436
|
-
id='031135',
|
|
420
|
+
EmailCfg(id='026290', author=DAVID_SCHOEN, attribution_reason='Signature'),
|
|
421
|
+
EmailCfg(id='031339', author=DAVID_SCHOEN, attribution_reason='Signature'),
|
|
422
|
+
EmailCfg(id='031492', author=DAVID_SCHOEN, attribution_reason='Signature'),
|
|
423
|
+
EmailCfg(id='031560', author=DAVID_SCHOEN, attribution_reason='Signature'),
|
|
424
|
+
EmailCfg(id='026287', author=DAVID_SCHOEN, attribution_reason='Signature'),
|
|
425
|
+
EmailCfg(id='033419', author=DAVID_SCHOEN, attribution_reason='Signature'),
|
|
426
|
+
EmailCfg(id='031460', author=EDWARD_JAY_EPSTEIN, attribution_reason=f"quoted reply has edwardjayepstein.com"),
|
|
427
|
+
EmailCfg(
|
|
428
|
+
id='030475',
|
|
437
429
|
author=FAITH_KATES,
|
|
438
|
-
|
|
439
|
-
|
|
440
|
-
|
|
441
|
-
),
|
|
442
|
-
MessageCfg(id='026547', author=GERALD_BARTON, recipients=[JEFFREY_EPSTEIN]), # Bad OCR
|
|
443
|
-
MessageCfg(id='029969', author=GWENDOLYN_BECK, attribution_reason='Signature'),
|
|
444
|
-
MessageCfg(id='029968', author=GWENDOLYN_BECK, attribution_reason='Signature', duplicate_ids=['031120']),
|
|
445
|
-
MessageCfg(id='029970', author=GWENDOLYN_BECK),
|
|
446
|
-
MessageCfg(id='029960', author=GWENDOLYN_BECK, attribution_reason='Reply'),
|
|
447
|
-
MessageCfg(id='029959', author=GWENDOLYN_BECK, attribution_reason='"Longevity & Aging"'),
|
|
448
|
-
MessageCfg(id='033360', author=HENRY_HOLT, attribution_reason='in signature'), # Henry Holt is a company not a person
|
|
449
|
-
MessageCfg(id='033384', author=JACK_GOLDBERGER, attribution_reason='Might be Paul Prosperi?'),
|
|
450
|
-
MessageCfg(id='026024', author=JEAN_HUGUEN, attribution_reason='Signature'),
|
|
451
|
-
MessageCfg(id='021823', author=JEAN_LUC_BRUNEL, attribution_reason='Reply'),
|
|
452
|
-
MessageCfg(id='022949', author=JEFFREY_EPSTEIN),
|
|
453
|
-
MessageCfg(id='031624', author=JEFFREY_EPSTEIN),
|
|
454
|
-
MessageCfg(id='031996', author=JEFFREY_EPSTEIN, recipients=[CHRISTINA_GALBRAITH], attribution_reason='bounced', duplicate_ids=['031442']),
|
|
455
|
-
MessageCfg(id='025041', author=JEFFREY_EPSTEIN, recipients=[LARRY_SUMMERS], duplicate_ids=['028675']), # Bad OCR
|
|
456
|
-
MessageCfg(
|
|
457
|
-
id='029692',
|
|
458
|
-
author=JEFFREY_EPSTEIN,
|
|
459
|
-
is_fwded_article=True, # Bad OCR, WaPo article
|
|
460
|
-
recipients=[LARRY_SUMMERS],
|
|
461
|
-
duplicate_ids=['029779'],
|
|
430
|
+
attribution_reason=f'{NEXT_MANAGEMENT} legal signature',
|
|
431
|
+
duplicate_ids=['030575'],
|
|
432
|
+
dupe_type='redacted'
|
|
462
433
|
),
|
|
463
|
-
|
|
464
|
-
|
|
465
|
-
|
|
466
|
-
|
|
467
|
-
|
|
434
|
+
EmailCfg(id='026547', author=GERALD_BARTON, recipients=[JEFFREY_EPSTEIN]), # Bad OCR # TODO: email header is really jacked up
|
|
435
|
+
EmailCfg(id='029969', author=GWENDOLYN_BECK, attribution_reason='Signature'),
|
|
436
|
+
EmailCfg(id='029968', author=GWENDOLYN_BECK, attribution_reason='Signature', duplicate_ids=['031120']),
|
|
437
|
+
EmailCfg(id='029970', author=GWENDOLYN_BECK, attribution_reason='signed "Longevity & Successful Agin"'),
|
|
438
|
+
EmailCfg(id='029960', author=GWENDOLYN_BECK, attribution_reason='Reply'),
|
|
439
|
+
EmailCfg(id='029959', author=GWENDOLYN_BECK, attribution_reason='"Longevity & Aging"'),
|
|
440
|
+
EmailCfg(id='033360', author=HENRY_HOLT, attribution_reason='in signature'), # Henry Holt is a company not a person
|
|
441
|
+
EmailCfg(id='033384', author=JACK_GOLDBERGER, attribution_reason='Might be Paul Prosperi?', is_attribution_uncertain=True),
|
|
442
|
+
EmailCfg(id='026024', author=JEAN_HUGUEN, attribution_reason='Signature'),
|
|
443
|
+
EmailCfg(id='021823', author=JEAN_LUC_BRUNEL, attribution_reason='Reply'),
|
|
444
|
+
EmailCfg(id='022949', author=JEFFREY_EPSTEIN), # Bad OCR (nofix)
|
|
445
|
+
EmailCfg(id='031624', author=JEFFREY_EPSTEIN), # Bad OCR (nofix)
|
|
446
|
+
EmailCfg(id='031996', author=JEFFREY_EPSTEIN, recipients=[CHRISTINA_GALBRAITH], attribution_reason='bounced', duplicate_ids=['031442']),
|
|
447
|
+
EmailCfg(id='018726', author=JEFFREY_EPSTEIN, timestamp=parse('2018-06-08 08:36:00')), # nofix
|
|
448
|
+
EmailCfg(id='032283', author=JEFFREY_EPSTEIN, timestamp=parse('2016-09-14 08:04:00')), # nofix
|
|
449
|
+
EmailCfg(id='026943', author=JEFFREY_EPSTEIN, timestamp=parse('2019-05-22 05:47:00')), # nofix
|
|
450
|
+
EmailCfg(id='023208', author=JEFFREY_EPSTEIN, recipients=[BRAD_WECHSLER, MELANIE_SPINELLA], duplicate_ids=['023291']),
|
|
451
|
+
EmailCfg(
|
|
468
452
|
id='032214',
|
|
469
453
|
author=JEFFREY_EPSTEIN,
|
|
470
454
|
actual_text='Agreed',
|
|
471
455
|
recipients=[MIROSLAV_LAJCAK],
|
|
472
456
|
attribution_reason='Quoted reply has signature',
|
|
473
457
|
),
|
|
474
|
-
|
|
475
|
-
|
|
476
|
-
|
|
477
|
-
|
|
478
|
-
|
|
479
|
-
|
|
480
|
-
|
|
481
|
-
|
|
482
|
-
|
|
458
|
+
EmailCfg(id='029582', author=JEFFREY_EPSTEIN, recipients=[RENATA_BOLOTOVA], attribution_reason=BOLOTOVA_REASON),
|
|
459
|
+
EmailCfg(id='030997', author=JEFFREY_EPSTEIN, actual_text='call back'),
|
|
460
|
+
EmailCfg(id='028770', author=JEFFREY_EPSTEIN, actual_text='call me now'),
|
|
461
|
+
EmailCfg(id='031826', author=JEFFREY_EPSTEIN, actual_text='I have'),
|
|
462
|
+
EmailCfg(id='030768', author=JEFFREY_EPSTEIN, actual_text='ok'),
|
|
463
|
+
EmailCfg(id='022938', author=JEFFREY_EPSTEIN, actual_text='what do you suggest?'),
|
|
464
|
+
EmailCfg(id='031791', author=JESSICA_CADWELL, attribution_reason='signature'),
|
|
465
|
+
EmailCfg(id='028851', author=JOI_ITO, recipients=[JEFFREY_EPSTEIN], timestamp=parse('2014-04-27 06:00:00')),
|
|
466
|
+
EmailCfg(
|
|
483
467
|
id='028849',
|
|
468
|
+
attribution_reason='Conversation with Joi Ito',
|
|
484
469
|
author=JOI_ITO,
|
|
470
|
+
description=f"{JOI_ITO} reaching out to Epstein for an immediate phone call after news about illicit Russian money",
|
|
485
471
|
recipients=[JEFFREY_EPSTEIN],
|
|
486
|
-
timestamp=parse('2014-04-27
|
|
487
|
-
attribution_reason='Conversation with Joi Ito',
|
|
472
|
+
timestamp=parse('2014-04-27 07:41:00'), # Filled in from 028847
|
|
488
473
|
),
|
|
489
|
-
|
|
490
|
-
|
|
491
|
-
|
|
492
|
-
|
|
493
|
-
|
|
494
|
-
|
|
495
|
-
|
|
496
|
-
|
|
497
|
-
|
|
498
|
-
|
|
499
|
-
|
|
500
|
-
|
|
501
|
-
|
|
502
|
-
|
|
503
|
-
|
|
504
|
-
|
|
505
|
-
|
|
506
|
-
|
|
507
|
-
|
|
508
|
-
|
|
509
|
-
MessageCfg(id='033495', author=LAWRANCE_VISOSKI, attribution_reason=LARRY_REASON),
|
|
510
|
-
MessageCfg(id='033487', author=LAWRANCE_VISOSKI, recipients=[JEFFREY_EPSTEIN]),
|
|
511
|
-
MessageCfg(
|
|
474
|
+
EmailCfg(id='028507', author=JONATHAN_FARKAS, attribution_reason='reply signed "best Jonathan"'),
|
|
475
|
+
EmailCfg(id='033282', author=JONATHAN_FARKAS, attribution_reason='reply signed "thanks Jonathan"', duplicate_ids=['033484']),
|
|
476
|
+
EmailCfg(id='033582', author=JONATHAN_FARKAS, attribution_reason='Reply', duplicate_ids=['032389']),
|
|
477
|
+
EmailCfg(id='033203', author=JONATHAN_FARKAS, attribution_reason='Reply', duplicate_ids=['033581']),
|
|
478
|
+
EmailCfg(id='032052', author=JONATHAN_FARKAS, attribution_reason='Reply', duplicate_ids=['031732']),
|
|
479
|
+
EmailCfg(id='033490', author=JONATHAN_FARKAS, attribution_reason='Signature', duplicate_ids=['032531']),
|
|
480
|
+
EmailCfg(id='032224', author=KATHRYN_RUEMMLER, recipients=[JEFFREY_EPSTEIN], attribution_reason='Reply'),
|
|
481
|
+
EmailCfg(id='032386', author=KATHRYN_RUEMMLER, attribution_reason=KATHY_REASON, is_attribution_uncertain=True),
|
|
482
|
+
EmailCfg(id='032727', author=KATHRYN_RUEMMLER, attribution_reason=KATHY_REASON, is_attribution_uncertain=True),
|
|
483
|
+
EmailCfg(id='030478', author=LANDON_THOMAS),
|
|
484
|
+
EmailCfg(id='029013', author=LARRY_SUMMERS, recipients=[JEFFREY_EPSTEIN]), # Bad OCR (nofix)
|
|
485
|
+
EmailCfg(id='032206', author=LAWRENCE_KRAUSS), # More of a text convo?
|
|
486
|
+
EmailCfg(id='032208', author=LAWRENCE_KRAUSS, recipients=[JEFFREY_EPSTEIN]), # More of a text convo?
|
|
487
|
+
EmailCfg(id='032209', author=LAWRENCE_KRAUSS, recipients=[JEFFREY_EPSTEIN]), # More of a text convo?
|
|
488
|
+
EmailCfg(id='029196', author=LAWRENCE_KRAUSS, recipients=[JEFFREY_EPSTEIN], actual_text='Talk in 40?'),
|
|
489
|
+
EmailCfg(id='033593', author=LAWRANCE_VISOSKI, attribution_reason='Signature'),
|
|
490
|
+
EmailCfg(id='033370', author=LAWRANCE_VISOSKI, attribution_reason=LARRY_REASON),
|
|
491
|
+
EmailCfg(id='033495', author=LAWRANCE_VISOSKI, attribution_reason=LARRY_REASON),
|
|
492
|
+
EmailCfg(id='033487', author=LAWRANCE_VISOSKI, recipients=[JEFFREY_EPSTEIN]),
|
|
493
|
+
EmailCfg(
|
|
512
494
|
id='029977',
|
|
513
495
|
author=LAWRANCE_VISOSKI,
|
|
514
496
|
recipients=[JEFFREY_EPSTEIN, DARREN_INDYKE, LESLEY_GROFF, RICHARD_KAHN] + FLIGHT_IN_2012_PEOPLE,
|
|
515
497
|
attribution_reason=LARRY_REASON,
|
|
516
498
|
duplicate_ids=['031129'],
|
|
517
499
|
),
|
|
518
|
-
|
|
519
|
-
|
|
520
|
-
|
|
521
|
-
|
|
522
|
-
|
|
523
|
-
|
|
524
|
-
|
|
525
|
-
|
|
526
|
-
|
|
527
|
-
|
|
528
|
-
|
|
529
|
-
|
|
530
|
-
|
|
531
|
-
|
|
532
|
-
|
|
533
|
-
|
|
534
|
-
|
|
535
|
-
|
|
536
|
-
|
|
537
|
-
|
|
538
|
-
|
|
539
|
-
|
|
540
|
-
|
|
541
|
-
|
|
500
|
+
EmailCfg(id='027046', author=LAWRANCE_VISOSKI, duplicate_ids=['028789']),
|
|
501
|
+
EmailCfg(id='033488', author=LAWRANCE_VISOSKI, duplicate_ids=['033154']),
|
|
502
|
+
EmailCfg(id='033309', author=LINDA_STONE, attribution_reason='"Co-authored with iPhone autocorrect"'),
|
|
503
|
+
EmailCfg(id='017581', author='Lisa Randall', attribution_reason='reply header'),
|
|
504
|
+
EmailCfg(id='026609', author='Mark Green', attribution_reason='Actually a fwd'),
|
|
505
|
+
EmailCfg(id='030472', author=MARTIN_WEINBERG, attribution_reason='Maybe. in reply', is_attribution_uncertain=True),
|
|
506
|
+
EmailCfg(id='030235', author=MELANIE_WALKER, attribution_reason='In fwd'),
|
|
507
|
+
EmailCfg(id='032343', author=MELANIE_WALKER, attribution_reason='Name seen in later reply 032346'),
|
|
508
|
+
EmailCfg(id='032212', author=MIROSLAV_LAJCAK, attribution_reason='signature'),
|
|
509
|
+
EmailCfg(id='022193', author=NADIA_MARCINKO, attribution_reason='reply'),
|
|
510
|
+
EmailCfg(id='021814', author=NADIA_MARCINKO, attribution_reason='reply'),
|
|
511
|
+
EmailCfg(id='021808', author=NADIA_MARCINKO, attribution_reason='reply'),
|
|
512
|
+
EmailCfg(id='022190', author=NADIA_MARCINKO, attribution_reason='reply'),
|
|
513
|
+
EmailCfg(id='021818', author=NADIA_MARCINKO, attribution_reason='reply'),
|
|
514
|
+
EmailCfg(id='022197', author=NADIA_MARCINKO, attribution_reason='reply'),
|
|
515
|
+
EmailCfg(id='022214', author=NADIA_MARCINKO, attribution_reason='Reply header'),
|
|
516
|
+
EmailCfg(id='021811', author=NADIA_MARCINKO, attribution_reason='Signature and email address in the message'),
|
|
517
|
+
EmailCfg(id='028487', author=NORMAN_D_RAU, attribution_reason='Fwded from "to" address', duplicate_ids=['026612']),
|
|
518
|
+
EmailCfg(
|
|
519
|
+
id='024923',
|
|
520
|
+
author=PAUL_KRASSNER,
|
|
521
|
+
recipients=['George Krassner', 'Nick Kazan', 'Mrisman02', 'Rebecca Risman', 'Linda W. Grossman'],
|
|
522
|
+
duplicate_ids=['031973']
|
|
523
|
+
),
|
|
524
|
+
EmailCfg(id='032457', author=PAUL_KRASSNER), # Bad OCR (nofix)
|
|
525
|
+
EmailCfg(id='029981', author=PAULA, attribution_reason='Name in reply + opera reference (Fisher now works in opera)'),
|
|
526
|
+
EmailCfg(id='030482', author=PAULA, attribution_reason=PAULA_REASON),
|
|
527
|
+
EmailCfg(id='033383', author=PAUL_PROSPERI, attribution_reason='Reply'),
|
|
528
|
+
EmailCfg(
|
|
542
529
|
id='033561',
|
|
543
530
|
author=PAUL_PROSPERI,
|
|
544
531
|
attribution_reason='Fwded mail sent to Prosperi. Might be Subotnick Stuart?',
|
|
545
532
|
duplicate_ids=['033157'],
|
|
546
533
|
),
|
|
547
|
-
|
|
548
|
-
|
|
549
|
-
|
|
550
|
-
|
|
551
|
-
|
|
552
|
-
|
|
553
|
-
|
|
534
|
+
EmailCfg(id='031694', author=PEGGY_SIEGAL, attribution_reason='quoted', is_attribution_uncertain=True),
|
|
535
|
+
EmailCfg(id='032219', author=PEGGY_SIEGAL, attribution_reason='Signed "Peggy"'),
|
|
536
|
+
EmailCfg(id='029020', author=RENATA_BOLOTOVA, attribution_reason='Signature'),
|
|
537
|
+
EmailCfg(id='029605', author=RENATA_BOLOTOVA, attribution_reason=BOLOTOVA_REASON),
|
|
538
|
+
EmailCfg(id='029606', author=RENATA_BOLOTOVA, attribution_reason=BOLOTOVA_REASON),
|
|
539
|
+
EmailCfg(id='029604', author=RENATA_BOLOTOVA, attribution_reason='Continued in 239606 etc'),
|
|
540
|
+
EmailCfg(
|
|
554
541
|
id='033584',
|
|
555
542
|
author=ROBERT_TRIVERS,
|
|
556
543
|
recipients=[JEFFREY_EPSTEIN],
|
|
557
544
|
attribution_reason='Refs paper by Trivers',
|
|
558
545
|
duplicate_ids=['033169'],
|
|
559
546
|
),
|
|
560
|
-
|
|
547
|
+
EmailCfg(
|
|
561
548
|
id='026320',
|
|
562
549
|
author=SEAN_BANNON,
|
|
563
550
|
attribution_reason="From protonmail, Bannon wrote 'just sent from my protonmail' in 027067",
|
|
564
551
|
),
|
|
565
|
-
|
|
566
|
-
|
|
567
|
-
|
|
568
|
-
|
|
569
|
-
|
|
570
|
-
|
|
552
|
+
EmailCfg(id='029003', author=SOON_YI_PREVIN, attribution_reason="\"Sent from Soon-Yi's iPhone\""),
|
|
553
|
+
EmailCfg(id='029005', author=SOON_YI_PREVIN, attribution_reason="\"Sent from Soon-Yi's iPhone\""),
|
|
554
|
+
EmailCfg(id='029007', author=SOON_YI_PREVIN, attribution_reason="\"Sent from Soon-Yi's iPhone\""),
|
|
555
|
+
EmailCfg(id='029010', author=SOON_YI_PREVIN, attribution_reason="\"Sent from Soon-Yi's iPhone\""),
|
|
556
|
+
EmailCfg(id='032296', author=SOON_YI_PREVIN, attribution_reason="\"Sent from Soon-Yi's iPhone\""),
|
|
557
|
+
EmailCfg(
|
|
571
558
|
id='019109',
|
|
572
559
|
author=STEVEN_HOFFENBERG,
|
|
573
560
|
recipients=["Players2"],
|
|
574
561
|
timestamp=parse('2016-08-11 09:36:01'),
|
|
575
562
|
attribution_reason='Actually a fwd by Charles Michael but Hoffenberg email more interesting',
|
|
576
563
|
),
|
|
577
|
-
|
|
564
|
+
EmailCfg(
|
|
578
565
|
id='026620',
|
|
579
566
|
author=TERRY_KAFKA,
|
|
580
567
|
recipients=[JEFFREY_EPSTEIN, MARK_EPSTEIN, MICHAEL_BUCHHOLTZ] + IRAN_NUCLEAR_DEAL_SPAM_EMAIL_RECIPIENTS,
|
|
581
|
-
attribution_reason='"Respectfully, terry"',
|
|
568
|
+
attribution_reason='ends with "Respectfully, terry"',
|
|
582
569
|
duplicate_ids=['028482'],
|
|
583
570
|
),
|
|
584
|
-
|
|
585
|
-
|
|
586
|
-
|
|
587
|
-
|
|
588
|
-
|
|
589
|
-
|
|
590
|
-
|
|
591
|
-
|
|
592
|
-
|
|
593
|
-
|
|
594
|
-
|
|
595
|
-
MessageCfg(id='033144', recipients=[DARREN_INDYKE, RICHARD_KAHN]),
|
|
596
|
-
MessageCfg(id='026466', recipients=[DIANE_ZIMAN], attribution_reason='Quoted reply'),
|
|
597
|
-
MessageCfg(id='031607', recipients=[EDWARD_JAY_EPSTEIN]),
|
|
598
|
-
MessageCfg(
|
|
571
|
+
EmailCfg(id='029992', author=TERRY_KAFKA, attribution_reason='Quoted reply'),
|
|
572
|
+
EmailCfg(id='029985', author=TERRY_KAFKA, attribution_reason='Quoted reply in 029992'),
|
|
573
|
+
EmailCfg(id='020666', author=TERRY_KAFKA, attribution_reason="Ends with 'Terry'"),
|
|
574
|
+
EmailCfg(id='026014', author=ZUBAIR_KHAN, recipients=[JEFFREY_EPSTEIN], timestamp=parse('2016-11-04 17:46:00')),
|
|
575
|
+
EmailCfg(id='027063', recipients=[ANTHONY_BARRETT]),
|
|
576
|
+
EmailCfg(id='030764', recipients=[ARIANE_DE_ROTHSCHILD], attribution_reason='Reply'),
|
|
577
|
+
EmailCfg(id='026431', recipients=[ARIANE_DE_ROTHSCHILD], attribution_reason='Reply'),
|
|
578
|
+
EmailCfg(id='032876', recipients=[CECILIA_STEEN], attribution_reason='unredacted in 032267'),
|
|
579
|
+
EmailCfg(id='026466', recipients=[DIANE_ZIMAN], attribution_reason='Quoted reply'),
|
|
580
|
+
EmailCfg(id='031607', recipients=[EDWARD_JAY_EPSTEIN], attribution_reason=f"quoted reply has edwardjayepstein.com"),
|
|
581
|
+
EmailCfg(
|
|
599
582
|
id='030525',
|
|
600
583
|
recipients=[FAITH_KATES],
|
|
601
|
-
attribution_reason='
|
|
584
|
+
attribution_reason=f'Reply in 030414 has {NEXT_MANAGEMENT} legal signature',
|
|
602
585
|
duplicate_ids=['030581'],
|
|
603
586
|
),
|
|
604
|
-
|
|
605
|
-
|
|
606
|
-
|
|
607
|
-
|
|
608
|
-
|
|
609
|
-
|
|
610
|
-
),
|
|
611
|
-
|
|
612
|
-
|
|
613
|
-
|
|
614
|
-
|
|
615
|
-
|
|
616
|
-
|
|
617
|
-
|
|
618
|
-
|
|
619
|
-
|
|
620
|
-
MessageCfg(id='032780', recipients=[JEFFREY_EPSTEIN]), # Bad OCR
|
|
621
|
-
MessageCfg(id='025233', recipients=[JEFFREY_EPSTEIN]), # Bad OCR
|
|
622
|
-
MessageCfg(id='022344', recipients=[JEFFREY_EPSTEIN], duplicate_ids=['028529']), # Bad OCR
|
|
623
|
-
MessageCfg(id='029324', recipients=[JEFFREY_EPSTEIN, "Jojo Fontanilla", "Lyn Fontanilla"]),
|
|
624
|
-
MessageCfg(id='033575', recipients=[JEFFREY_EPSTEIN, DARREN_INDYKE, DEBBIE_FEIN], duplicate_ids=['012898']),
|
|
625
|
-
MessageCfg(id='023067', recipients=[JEFFREY_EPSTEIN, DARREN_INDYKE, DEBBIE_FEIN, TONJA_HADDAD_COLEMAN]), # Bad OCR
|
|
626
|
-
MessageCfg(id='033228', recipients=[JEFFREY_EPSTEIN, DARREN_INDYKE, FRED_HADDAD]), # Bad OCR
|
|
627
|
-
MessageCfg(id='025790', recipients=[JEFFREY_EPSTEIN, DARREN_INDYKE, JACK_GOLDBERGER], duplicate_ids=['031994']), # Bad OCR
|
|
628
|
-
MessageCfg(
|
|
629
|
-
id='031384',
|
|
630
|
-
actual_text='',
|
|
631
|
-
recipients=[JEFFREY_EPSTEIN, DARREN_INDYKE, JACK_GOLDBERGER, MARTIN_WEINBERG, SCOTT_J_LINK],
|
|
632
|
-
),
|
|
633
|
-
MessageCfg(id='033512', recipients=[JEFFREY_EPSTEIN, DARREN_INDYKE, JACKIE_PERCZEK, MARTIN_WEINBERG], duplicate_ids=['033361']),
|
|
634
|
-
MessageCfg(id='032063', recipients=[JEFFREY_EPSTEIN, DARREN_INDYKE, REID_WEINGARTEN]),
|
|
635
|
-
MessageCfg(id='033486', recipients=[JEFFREY_EPSTEIN, DARREN_INDYKE, RICHARD_KAHN], duplicate_ids=['033156']), # Bad OCR
|
|
636
|
-
MessageCfg(id='029154', recipients=[JEFFREY_EPSTEIN, DAVID_HAIG]), # Bad OCR
|
|
637
|
-
MessageCfg(id='029498', recipients=[JEFFREY_EPSTEIN, DAVID_HAIG, GORDON_GETTY, "Norman Finkelstein"]), # Bad OCR
|
|
638
|
-
MessageCfg(id='029889', recipients=[JEFFREY_EPSTEIN, "Connie Zaguirre", JACK_GOLDBERGER, ROBERT_D_CRITTON]), # Bad OCR
|
|
639
|
-
MessageCfg(id='028931', recipients=[JEFFREY_EPSTEIN, LAWRENCE_KRAUSS]), # Bad OCR
|
|
640
|
-
MessageCfg(id='019407', recipients=[JEFFREY_EPSTEIN, MICHAEL_SITRICK]), # Bad OCR
|
|
641
|
-
MessageCfg(id='031980', recipients=[JEFFREY_EPSTEIN, MICHAEL_SITRICK], duplicate_ids=['019409']), # Bad OCR
|
|
642
|
-
MessageCfg(id='029163', recipients=[JEFFREY_EPSTEIN, ROBERT_TRIVERS]), # Bad OCR
|
|
643
|
-
MessageCfg(id='026228', recipients=[JEFFREY_EPSTEIN, STEVEN_PFEIFFER]), # Bad OCR
|
|
644
|
-
MessageCfg(id='030299', recipients=[JESSICA_CADWELL, ROBERT_D_CRITTON], duplicate_ids=['021794']), # Bad OCR
|
|
645
|
-
MessageCfg(id='033456', recipients=["Joel"], attribution_reason='Reply'),
|
|
646
|
-
MessageCfg(id='033460', recipients=["Joel"], attribution_reason='Reply'),
|
|
647
|
-
MessageCfg(
|
|
587
|
+
EmailCfg(id='025329', recipients=['George Krassner', 'Nancy Cain', 'Tom', 'Marie Moneysmith', 'Steven Gaydos', 'Linda W. Grossman', 'Holly Krassner Dawson', 'Daniel Dawson', 'Danny Goldberg', 'Caryl Ratner', 'Kevin Bright', 'Michael Simmons', SAMUEL_LEFF, 'Bob Fass', 'Lynnie Tofte Fass', 'Barb Cowles', 'Lee Quarnstrom']),
|
|
588
|
+
EmailCfg(id='033568', recipients=['George Krassner', 'Daniel Dawson', 'Danny Goldberg', 'Tom', 'Kevin Bright', 'Walli Leff', 'Michael Simmons', 'Lee Quarnstrom', 'Lanny Swerdlow', 'Larry Sloman', 'W&K', 'Harry Shearer', 'Jay Levin']),
|
|
589
|
+
EmailCfg(id='026426', recipients=[JEAN_HUGUEN], attribution_reason='Reply'),
|
|
590
|
+
EmailCfg(id='022202', recipients=[JEAN_LUC_BRUNEL], attribution_reason='Follow up / reply', duplicate_ids=['029975']),
|
|
591
|
+
EmailCfg(id='022187', recipients=[JEFFREY_EPSTEIN]), # Bad OCR (nofix)
|
|
592
|
+
EmailCfg(id='031489', recipients=[JEFFREY_EPSTEIN]), # Bad OCR (unfixable)
|
|
593
|
+
EmailCfg(id='032210', recipients=[JEFFREY_EPSTEIN]), # More of a text convo?
|
|
594
|
+
EmailCfg(id='030347', recipients=[JEFFREY_EPSTEIN]), # Bad OCR (nofix)
|
|
595
|
+
EmailCfg(id='030367', recipients=[JEFFREY_EPSTEIN]), # Bad OCR (nofix)
|
|
596
|
+
EmailCfg(id='033274', recipients=[JEFFREY_EPSTEIN]), # this is a note sent to self
|
|
597
|
+
EmailCfg(id='032780', recipients=[JEFFREY_EPSTEIN]), # Bad OCR (nofix)
|
|
598
|
+
EmailCfg(id='029324', recipients=[JEFFREY_EPSTEIN, "Jojo Fontanilla", "Lyn Fontanilla"]), # Bad OCR (nofix)
|
|
599
|
+
EmailCfg(id='033456', recipients=["Joel"], attribution_reason='Reply'),
|
|
600
|
+
EmailCfg(id='033458', recipients=["Joel"], attribution_reason='Reply'),
|
|
601
|
+
EmailCfg(id='033460', recipients=["Joel"], attribution_reason='Reply'),
|
|
602
|
+
EmailCfg(
|
|
648
603
|
id='021090',
|
|
649
|
-
is_fwded_article=True,
|
|
650
604
|
recipients=[JONATHAN_FARKAS],
|
|
651
605
|
attribution_reason='Reply to a message signed "jonathan" same as other Farkas emails',
|
|
606
|
+
is_fwded_article=True,
|
|
652
607
|
),
|
|
653
|
-
|
|
608
|
+
EmailCfg(
|
|
654
609
|
id='033073',
|
|
655
610
|
recipients=[KATHRYN_RUEMMLER],
|
|
656
611
|
attribution_reason='to "Kathy" about dems, sent from iPad',
|
|
657
|
-
is_attribution_uncertain=True, # It's actually Kathy R. as
|
|
612
|
+
is_attribution_uncertain=True, # It's actually Kathy R. as the recipient that's the uncertain part
|
|
658
613
|
),
|
|
659
|
-
|
|
614
|
+
EmailCfg(
|
|
660
615
|
id='032939',
|
|
661
616
|
recipients=[KATHRYN_RUEMMLER],
|
|
662
617
|
attribution_reason='to "Kathy" about dems, sent from iPad',
|
|
663
|
-
is_attribution_uncertain=True, # It's actually Kathy R. as
|
|
618
|
+
is_attribution_uncertain=True, # It's actually Kathy R. as the recipient that's the uncertain part
|
|
664
619
|
),
|
|
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
|
-
|
|
620
|
+
EmailCfg(id='030522', recipients=[LANDON_THOMAS], attribution_reason='reply header', is_fwded_article=True), # Vicky Ward article
|
|
621
|
+
EmailCfg(id='031413', recipients=[LANDON_THOMAS], attribution_reason='reply header'),
|
|
622
|
+
EmailCfg(id='033591', recipients=[LAWRANCE_VISOSKI], attribution_reason='Reply signature', duplicate_ids=['033591']),
|
|
623
|
+
EmailCfg(id='027097', recipients=[LAWRANCE_VISOSKI], attribution_reason='Reply signature', duplicate_ids=['028787']),
|
|
624
|
+
EmailCfg(id='033466', recipients=[LAWRANCE_VISOSKI], attribution_reason='Reply signature'),
|
|
625
|
+
EmailCfg(id='022250', recipients=[LESLEY_GROFF], attribution_reason='Reply'),
|
|
626
|
+
EmailCfg(id='030242', recipients=[MARIANA_IDZKOWSKA], duplicate_ids=['032048'], dupe_type='redacted'),
|
|
627
|
+
EmailCfg(id='030368', recipients=[MELANIE_SPINELLA], attribution_reason='Actually a self fwd from jeffrey to jeffrey'),
|
|
628
|
+
EmailCfg(id='030369', recipients=[MELANIE_SPINELLA], attribution_reason='Actually a self fwd from jeffrey to jeffrey'),
|
|
629
|
+
EmailCfg(id='030371', recipients=[MELANIE_SPINELLA], attribution_reason='Actually a self fwd from jeffrey to jeffrey'),
|
|
630
|
+
EmailCfg(id='022258', recipients=[NADIA_MARCINKO], attribution_reason='Reply header'),
|
|
631
|
+
EmailCfg(id='030506', recipients=[PAULA], attribution_reason=PAULA_REASON, is_attribution_uncertain=True),
|
|
632
|
+
EmailCfg(id='030507', recipients=[PAULA], attribution_reason=PAULA_REASON, is_attribution_uncertain=True),
|
|
633
|
+
EmailCfg(id='030508', recipients=[PAULA], attribution_reason=PAULA_REASON, is_attribution_uncertain=True),
|
|
634
|
+
EmailCfg(id='030509', recipients=[PAULA], attribution_reason=PAULA_REASON, is_attribution_uncertain=True),
|
|
635
|
+
EmailCfg(id='030096', recipients=[PETER_MANDELSON], attribution_reason='reply header'),
|
|
636
|
+
EmailCfg(id='032951', recipients=[RAAFAT_ALSABBAGH, None], attribution_reason='Redacted'),
|
|
637
|
+
EmailCfg(id='029581', recipients=[RENATA_BOLOTOVA], attribution_reason=BOLOTOVA_REASON),
|
|
638
|
+
EmailCfg(id='019334', recipients=[STEVE_BANNON], attribution_reason='quoted reply'),
|
|
639
|
+
EmailCfg(id='021106', recipients=[STEVE_BANNON], attribution_reason='Reply'),
|
|
640
|
+
|
|
641
|
+
# Misc configs
|
|
642
|
+
EmailCfg(id='033050', actual_text='schwartman'),
|
|
643
|
+
EmailCfg(id='029344', actual_text='I thought of you when I read this article. Was this your idea? Alan'),
|
|
644
|
+
EmailCfg(id='023627', description=MICHAEL_WOLFF_ARTICLE_HINT, is_fwded_article=True),
|
|
645
|
+
EmailCfg(id='026298', is_fwded_article=True, duplicate_ids=['026499']), # Written by someone else?
|
|
646
|
+
EmailCfg(id='029692', is_fwded_article=True, duplicate_ids=['029779']), # WaPo article
|
|
647
|
+
EmailCfg(id='022344', is_fwded_article=True, duplicate_ids=['028529']), # Bill Gates is most admired from Nikolic
|
|
648
|
+
EmailCfg(id='018197', is_fwded_article=True, duplicate_ids=['028648']), # Ray Takeyh article fwd
|
|
649
|
+
EmailCfg(id='028728', is_fwded_article=True, duplicate_ids=['027102']), # WSJ forward to Larry Summers
|
|
650
|
+
EmailCfg(id='028781', is_fwded_article=True, duplicate_ids=['013460']), # Atlantic on Jim Yong Kim, Obama's World Bank Pick
|
|
651
|
+
EmailCfg(id='026755', is_fwded_article=True), # HuffPo
|
|
652
|
+
EmailCfg(id='030528', is_fwded_article=True), # Vicky Ward article
|
|
653
|
+
EmailCfg(id='028508', is_fwded_article=True), # nanosatellites article
|
|
654
|
+
EmailCfg(id='019845', is_fwded_article=True), # Pro Publica article on Preet Bharara
|
|
655
|
+
EmailCfg(id='029021', is_fwded_article=True), # article about bannon sent by Alain Forget
|
|
656
|
+
EmailCfg(id='031688', is_fwded_article=True), # Bill Siegel fwd of email about hamas
|
|
657
|
+
EmailCfg(id='026551', is_fwded_article=True), # Sultan bin Sulayem "Ayatollah between the sheets"
|
|
658
|
+
EmailCfg(id='031768', is_fwded_article=True), # Sultan bin Sulayem 'Horseface'
|
|
659
|
+
EmailCfg(id='031569', is_fwded_article=True), # Article by Kathryn Alexeeff fwded to Peter Thiel
|
|
660
|
+
EmailCfg(id='029689', is_fwded_article=True), # Tunisia article to Larry Summers
|
|
661
|
+
EmailCfg(id='014525', is_fwded_article=True), # Really more of a mailing list from Paul Morris?
|
|
662
|
+
EmailCfg(id='032475', timestamp=parse('2017-02-15 13:31:25')),
|
|
663
|
+
EmailCfg(id='030373', timestamp=parse('2018-10-03 01:49:27')),
|
|
664
|
+
|
|
665
|
+
# Configure duplicates
|
|
666
|
+
EmailCfg(id='028768', duplicate_ids=['026563'], dupe_type='redacted'),
|
|
667
|
+
EmailCfg(id='027056', duplicate_ids=['028762'], dupe_type='redacted'),
|
|
668
|
+
EmailCfg(id='032248', duplicate_ids=['032246'], dupe_type='redacted'),
|
|
669
|
+
EmailCfg(id='030628', duplicate_ids=['023065'], dupe_type='redacted'),
|
|
670
|
+
EmailCfg(id='017523', duplicate_ids=['031226'], dupe_type='redacted'),
|
|
671
|
+
EmailCfg(id='031099', duplicate_ids=['031008'], dupe_type='redacted'),
|
|
672
|
+
EmailCfg(id='033596', duplicate_ids=['033463'], dupe_type='redacted'),
|
|
673
|
+
EmailCfg(id='030624', duplicate_ids=['023018'], dupe_type='redacted'),
|
|
674
|
+
EmailCfg(id='030335', duplicate_ids=['030596'], dupe_type='redacted'),
|
|
675
|
+
EmailCfg(id='029841', duplicate_ids=['012711'], dupe_type='redacted'),
|
|
676
|
+
EmailCfg(id='030414', duplicate_ids=['030578'], dupe_type='redacted'),
|
|
677
|
+
EmailCfg(id='031135', duplicate_ids=['030634'], dupe_type='redacted'),
|
|
678
|
+
EmailCfg(id='029835', duplicate_ids=['028968']),
|
|
679
|
+
EmailCfg(id='033512', duplicate_ids=['033361']),
|
|
680
|
+
EmailCfg(id='030299', duplicate_ids=['021794']),
|
|
681
|
+
EmailCfg(id='033575', duplicate_ids=['012898']),
|
|
682
|
+
EmailCfg(id='031428', duplicate_ids=['031388']),
|
|
683
|
+
EmailCfg(id='031980', duplicate_ids=['019409']),
|
|
684
|
+
EmailCfg(id='033486', duplicate_ids=['033156']),
|
|
685
|
+
EmailCfg(id='025790', duplicate_ids=['031994']),
|
|
686
|
+
EmailCfg(id='025041', duplicate_ids=['028675']),
|
|
687
|
+
EmailCfg(id='028497', duplicate_ids=['026228']),
|
|
688
|
+
EmailCfg(id='033528', duplicate_ids=['033517']),
|
|
689
|
+
EmailCfg(id='032023', duplicate_ids=['032012']),
|
|
690
|
+
EmailCfg(id='019412', duplicate_ids=['028621']),
|
|
691
|
+
EmailCfg(id='027053', duplicate_ids=['028765']),
|
|
692
|
+
EmailCfg(id='027049', duplicate_ids=['028773']),
|
|
693
|
+
EmailCfg(id='033580', duplicate_ids=['033207']),
|
|
694
|
+
EmailCfg(id='028506', duplicate_ids=['025547']),
|
|
695
|
+
EmailCfg(id='028784', duplicate_ids=['026549']),
|
|
696
|
+
EmailCfg(id='033386', duplicate_ids=['033599']),
|
|
697
|
+
EmailCfg(id='023024', duplicate_ids=['030622']),
|
|
698
|
+
EmailCfg(id='030618', duplicate_ids=['023026']),
|
|
699
|
+
EmailCfg(id='028780', duplicate_ids=['026834']),
|
|
700
|
+
EmailCfg(id='028775', duplicate_ids=['026835']),
|
|
701
|
+
EmailCfg(id='033251', duplicate_ids=['033489']),
|
|
702
|
+
EmailCfg(id='031118', duplicate_ids=['019465']),
|
|
703
|
+
EmailCfg(id='031912', duplicate_ids=['032158']),
|
|
704
|
+
EmailCfg(id='030587', duplicate_ids=['030514']),
|
|
705
|
+
EmailCfg(id='029773', duplicate_ids=['012685']),
|
|
706
|
+
EmailCfg(id='029849', duplicate_ids=['033482']),
|
|
707
|
+
EmailCfg(id='033297', duplicate_ids=['033586']),
|
|
708
|
+
EmailCfg(id='031089', duplicate_ids=['018084']),
|
|
709
|
+
EmailCfg(id='031088', duplicate_ids=['030885']),
|
|
710
|
+
EmailCfg(id='030238', duplicate_ids=['031130']),
|
|
711
|
+
EmailCfg(id='030859', duplicate_ids=['031067']),
|
|
712
|
+
EmailCfg(id='031136', duplicate_ids=['028791']),
|
|
713
|
+
EmailCfg(id='030635', duplicate_ids=['031134']),
|
|
714
|
+
EmailCfg(id='028494', duplicate_ids=['026234']),
|
|
715
|
+
EmailCfg(id='030311', duplicate_ids=['021790']),
|
|
716
|
+
EmailCfg(id='033508', duplicate_ids=['029880']),
|
|
717
|
+
EmailCfg(id='030493', duplicate_ids=['030612']),
|
|
718
|
+
EmailCfg(id='032051', duplicate_ids=['031771']),
|
|
719
|
+
EmailCfg(id='031217', duplicate_ids=['021761']),
|
|
720
|
+
EmailCfg(id='031346', duplicate_ids=['031426']),
|
|
721
|
+
EmailCfg(id='031345', duplicate_ids=['031427']),
|
|
722
|
+
EmailCfg(id='031343', duplicate_ids=['031432']),
|
|
723
|
+
EmailCfg(id='031020', duplicate_ids=['031084']),
|
|
724
|
+
EmailCfg(id='033354', duplicate_ids=['033485']),
|
|
725
|
+
EmailCfg(id='031999', duplicate_ids=['021241']),
|
|
726
|
+
EmailCfg(id='030502', duplicate_ids=['030602']),
|
|
727
|
+
EmailCfg(id='030574', duplicate_ids=['030617']),
|
|
728
|
+
EmailCfg(id='031156', duplicate_ids=['025226']),
|
|
729
|
+
EmailCfg(id='031018', duplicate_ids=['031086']),
|
|
730
|
+
EmailCfg(id='031026', duplicate_ids=['031079']),
|
|
731
|
+
EmailCfg(id='032011', duplicate_ids=['031787']),
|
|
732
|
+
EmailCfg(id='030606', duplicate_ids=['030498']),
|
|
733
|
+
EmailCfg(id='032005', duplicate_ids=['021235']),
|
|
734
|
+
EmailCfg(id='028505', duplicate_ids=['026160']),
|
|
735
|
+
EmailCfg(id='031126', duplicate_ids=['030837']),
|
|
736
|
+
EmailCfg(id='029624', duplicate_ids=['029778']),
|
|
737
|
+
EmailCfg(id='031338', duplicate_ids=['031422']),
|
|
738
|
+
EmailCfg(id='033587', duplicate_ids=['033289']),
|
|
739
|
+
EmailCfg(id='032107', duplicate_ids=['012722']),
|
|
740
|
+
EmailCfg(id='030844', duplicate_ids=['031114']),
|
|
741
|
+
EmailCfg(id='031031', duplicate_ids=['031074']),
|
|
742
|
+
EmailCfg(id='027032', duplicate_ids=['028531']),
|
|
743
|
+
EmailCfg(id='026777', duplicate_ids=['028493']),
|
|
744
|
+
EmailCfg(id='029837', duplicate_ids=['029255']),
|
|
745
|
+
EmailCfg(id='031423', duplicate_ids=['025361']),
|
|
746
|
+
EmailCfg(id='029299', duplicate_ids=['033594']),
|
|
747
|
+
EmailCfg(id='030904', duplicate_ids=['031069']),
|
|
748
|
+
EmailCfg(id='030006', duplicate_ids=['031165']),
|
|
749
|
+
EmailCfg(id='025215', duplicate_ids=['031159']),
|
|
750
|
+
EmailCfg(id='031011', duplicate_ids=['031090']),
|
|
751
|
+
EmailCfg(id='032068', duplicate_ids=['018158']),
|
|
752
|
+
EmailCfg(id='031213', duplicate_ids=['031221']),
|
|
753
|
+
EmailCfg(id='016595', duplicate_ids=['016690']),
|
|
754
|
+
EmailCfg(id='029833', duplicate_ids=['028970']),
|
|
755
|
+
EmailCfg(id='029839', duplicate_ids=['028958']),
|
|
756
|
+
EmailCfg(id='029893', duplicate_ids=['033503']),
|
|
757
|
+
EmailCfg(id='025878', duplicate_ids=['028486']),
|
|
758
|
+
EmailCfg(id='032764', duplicate_ids=['033565']),
|
|
759
|
+
EmailCfg(id='026618', duplicate_ids=['028485']),
|
|
760
|
+
EmailCfg(id='030609', duplicate_ids=['030495']),
|
|
761
|
+
EmailCfg(id='029831', duplicate_ids=['028972']),
|
|
762
|
+
EmailCfg(id='021758', duplicate_ids=['030616']),
|
|
763
|
+
EmailCfg(id='033498', duplicate_ids=['029884']),
|
|
764
|
+
EmailCfg(id='028620', duplicate_ids=['027094']),
|
|
765
|
+
EmailCfg(id='032456', duplicate_ids=['033579']),
|
|
766
|
+
EmailCfg(id='030315', duplicate_ids=['030255']),
|
|
767
|
+
EmailCfg(id='031112', duplicate_ids=['030876']),
|
|
768
|
+
EmailCfg(id='030614', duplicate_ids=['030491']),
|
|
769
|
+
EmailCfg(id='033585', duplicate_ids=['032279']),
|
|
770
|
+
EmailCfg(id='031220', duplicate_ids=['031189']),
|
|
771
|
+
EmailCfg(id='032779', duplicate_ids=['033563']),
|
|
772
|
+
EmailCfg(id='033230', duplicate_ids=['033577']),
|
|
773
|
+
EmailCfg(id='032125', duplicate_ids=['023971']),
|
|
774
|
+
EmailCfg(id='031230', duplicate_ids=['031203']),
|
|
775
|
+
EmailCfg(id='028752', duplicate_ids=['026569']),
|
|
776
|
+
EmailCfg(id='031773', duplicate_ids=['032050']),
|
|
777
|
+
EmailCfg(id='021400', duplicate_ids=['031983']),
|
|
778
|
+
EmailCfg(id='026548', duplicate_ids=['033491']),
|
|
779
|
+
EmailCfg(id='029752', duplicate_ids=['023550']),
|
|
780
|
+
EmailCfg(id='030339', duplicate_ids=['030592']),
|
|
781
|
+
EmailCfg(id='032250', duplicate_ids=['033589']),
|
|
811
782
|
]
|
|
812
783
|
|
|
813
784
|
|
|
@@ -815,732 +786,734 @@ EMAILS_CONFIG = [
|
|
|
815
786
|
####################################### OTHER FILES ############################################
|
|
816
787
|
################################################################################################
|
|
817
788
|
|
|
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
|
-
FileCfg(id='022058', author=JAMES_PATTERSON, description=PATTERSON_BOOK_SCANS, date='2016-10-10'),
|
|
849
|
-
FileCfg(id='022118', author=JAMES_PATTERSON, description=PATTERSON_BOOK_SCANS, date='2016-10-10'),
|
|
850
|
-
FileCfg(id='019111', author=JAMES_PATTERSON, description=PATTERSON_BOOK_SCANS, date='2016-10-10'),
|
|
851
|
-
FileCfg(id='031533', description=f'pages from a book about the Baylor University sexual assault scandal and Sam Ukwuachu'),
|
|
789
|
+
OTHER_FILES_BOOKS = [
|
|
790
|
+
DocCfg(id='017088', author=ALAN_DERSHOWITZ, description=f'"Taking the Stand: My Life in the Law" (draft)'),
|
|
791
|
+
DocCfg(id='013501', author='Arnold J. Mandell', description=f'The Nearness Of Grace: A Personal Science Of Spiritual Transformation', date='2005-01-01'),
|
|
792
|
+
DocCfg(id='012899', author='Ben Goertzel', description=f'Engineering General Intelligence: A Path to Advanced AGI Via Embodied Learning and Cognitive Synergy'),
|
|
793
|
+
DocCfg(id='018438', author='Clarisse Thorn', description=f'The S&M Feminist'),
|
|
794
|
+
DocCfg(id='019477', author=EDWARD_JAY_EPSTEIN, description=f'How America Lost Its Secrets: Edward Snowden, the Man, and the Theft'),
|
|
795
|
+
DocCfg(id='020153', author=EDWARD_JAY_EPSTEIN, description=f'The Snowden Affair: A Spy Story In Six Parts'),
|
|
796
|
+
DocCfg(id='011472', author=EHUD_BARAK, description=NIGHT_FLIGHT_BOOK),
|
|
797
|
+
DocCfg(id='027849', author=EHUD_BARAK, description=NIGHT_FLIGHT_BOOK),
|
|
798
|
+
DocCfg(id='010912', author=GORDON_GETTY, description=f'"Free Growth and Other Surprises" (draft)', date='2018-10-18'),
|
|
799
|
+
DocCfg(id='010477', author=JAMES_PATTERSON, description=PATTERSON_BOOK_SCANS, date='2016-10-10'),
|
|
800
|
+
DocCfg(id='010486', author=JAMES_PATTERSON, description=PATTERSON_BOOK_SCANS, date='2016-10-10'),
|
|
801
|
+
DocCfg(id='021958', author=JAMES_PATTERSON, description=PATTERSON_BOOK_SCANS, date='2016-10-10'),
|
|
802
|
+
DocCfg(id='022058', author=JAMES_PATTERSON, description=PATTERSON_BOOK_SCANS, date='2016-10-10'),
|
|
803
|
+
DocCfg(id='022118', author=JAMES_PATTERSON, description=PATTERSON_BOOK_SCANS, date='2016-10-10'),
|
|
804
|
+
DocCfg(id='019111', author=JAMES_PATTERSON, description=PATTERSON_BOOK_SCANS, date='2016-10-10'),
|
|
805
|
+
DocCfg(id='015675', author='James Tagg', description=f'Are the Androids Dreaming Yet? Amazing Brain Human Communication, Creativity & Free Will'),
|
|
806
|
+
DocCfg(id='016804', author=JOHN_BROCKMAN, description='Deep Thinking: Twenty-Five Ways of Looking at AI', date='2019-02-19', duplicate_ids=['016221']),
|
|
807
|
+
DocCfg(id='018232', author='Joshua Cooper Ramo', description=f'The Seventh Sense: Power, Fortune & Survival in the Age of Networks'),
|
|
808
|
+
DocCfg(id='012747', author='Marc D. Hauser', description=f'Evilicious: Explaining Our Taste For Excessive Harm'),
|
|
809
|
+
DocCfg(id='032724', author=MICHAEL_WOLFF, description=f'cover of "{FIRE_AND_FURY}"', date='2018-01-05'),
|
|
810
|
+
DocCfg(id='021120', author=MICHAEL_WOLFF, description=f'chapter of "Siege: Trump Under Fire"'),
|
|
811
|
+
DocCfg(id='019874', author=MICHAEL_WOLFF, description=FIRE_AND_FURY, date='2018-01-05'),
|
|
812
|
+
DocCfg(id='015032', author=PAUL_KRASSNER, description=f"60 Years of Investigative Satire: The Best of {PAUL_KRASSNER}"),
|
|
813
|
+
DocCfg(id='023731', author=ROGER_SCHANK, description=f'Teaching Minds How Cognitive Science Can Save Our Schools'),
|
|
814
|
+
DocCfg(id='021247', author='The Chicago Social Brain Network', description=f'Invisible Forces And Powerful Beliefs: Gravity, Gods, And Minds', date='2010-10-04'),
|
|
815
|
+
DocCfg(id='013796', author='Tim Ferriss', description=f'The 4-Hour Workweek'),
|
|
816
|
+
DocCfg(id='021145', author=VIRGINIA_GIUFFRE, description=f'"The Billionaire\'s Playboy Club" (draft?)'),
|
|
817
|
+
DocCfg(id='031533', description=f'pages from a book about the Baylor University sexual assault scandal and Sam Ukwuachu'),
|
|
818
|
+
]
|
|
852
819
|
|
|
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
|
-
|
|
820
|
+
OTHER_FILES_ARTICLES = [
|
|
821
|
+
DocCfg(id='013275', author=BLOOMBERG, description=f"article on notable 2013 obituaries", date='2013-12-26'),
|
|
822
|
+
DocCfg(id='026543', author=BLOOMBERG, description=f"BNA article about taxes"),
|
|
823
|
+
DocCfg(id='023572', author=CHINA_DAILY, description=f"article on China's Belt & Road Initiative"),
|
|
824
|
+
DocCfg(id='023571', author=CHINA_DAILY, description=f"article on terrorism, Macau, trade initiatives", date='2016-09-18'),
|
|
825
|
+
DocCfg(id='023570', author=CHINA_DAILY, description=f"article on Belt & Road in Central/South America, Xi philosophy", date='2017-05-14'),
|
|
826
|
+
DocCfg(id='025115', author=CHINA_DAILY, description=f"article on China and the US working together", date='2017-05-14'),
|
|
827
|
+
DocCfg(id='025292', author=DAILY_MAIL, description=f"article on Bill Clinton being named in a lawsuit"),
|
|
828
|
+
DocCfg(id='019468', author=DAILY_MAIL, description=f"article on Epstein and Clinton"),
|
|
829
|
+
DocCfg(id='022970', author=DAILY_MAIL, description=f"article on Epstein and Prince Andrew"),
|
|
830
|
+
DocCfg(id='031186', author=DAILY_MAIL, description=f'article on allegations of rape of 13 year old against Trump', date='2016-11-02'),
|
|
831
|
+
DocCfg(id='013437', author=DAILY_TELEGRAPH, description=f"article about Epstein's diary", date='2011-03-05'),
|
|
832
|
+
DocCfg(id='023287', author=DAILY_TELEGRAPH, description=f"article about a play based on the Oslo Accords", date='2017-09-15'),
|
|
833
|
+
DocCfg(id='019206', author=EDWARD_JAY_EPSTEIN, description=f"WSJ article about Edward Snowden", date='2016-12-30'),
|
|
834
|
+
DocCfg(id='029539', author=LA_TIMES, description=f"Alan Trounson interview on California stem cell research and CIRM"),
|
|
835
|
+
DocCfg(id='029865', author=LA_TIMES, description=f"front page article about {DEEPAK_CHOPRA} and young Iranians", date='2016-11-05'),
|
|
836
|
+
DocCfg(id='026598', author=LA_TIMES, description=f"op-ed about why America needs a Ministry of Culture"),
|
|
837
|
+
DocCfg(id='027024', author=LA_TIMES, description=f"Scientists Create Human Embryos to Make Stem Cells", date='2013-05-15'),
|
|
838
|
+
DocCfg(id='022707', author=MICHAEL_WOLFF, description=MICHAEL_WOLFF_ARTICLE_HINT),
|
|
839
|
+
DocCfg(id='022727', author=MICHAEL_WOLFF, description=MICHAEL_WOLFF_ARTICLE_HINT),
|
|
840
|
+
DocCfg(id='022746', author=MICHAEL_WOLFF, description=MICHAEL_WOLFF_ARTICLE_HINT),
|
|
841
|
+
DocCfg(id='022844', author=MICHAEL_WOLFF, description=MICHAEL_WOLFF_ARTICLE_HINT),
|
|
842
|
+
DocCfg(id='022863', author=MICHAEL_WOLFF, description=MICHAEL_WOLFF_ARTICLE_HINT),
|
|
843
|
+
DocCfg(id='022894', author=MICHAEL_WOLFF, description=MICHAEL_WOLFF_ARTICLE_HINT),
|
|
844
|
+
DocCfg(id='022952', author=MICHAEL_WOLFF, description=MICHAEL_WOLFF_ARTICLE_HINT),
|
|
845
|
+
DocCfg(id='024229', author=MICHAEL_WOLFF, description=MICHAEL_WOLFF_ARTICLE_HINT),
|
|
846
|
+
DocCfg(id='031753', author=PAUL_KRASSNER, description=f'essay for Playboy in the 1980s', date='1985-01-01'),
|
|
847
|
+
DocCfg(id='023638', author=PAUL_KRASSNER, description=f'magazine interview'),
|
|
848
|
+
DocCfg(id='024374', author=PAUL_KRASSNER, description=f"Remembering Cavalier Magazine"),
|
|
849
|
+
DocCfg(id='030187', author=PAUL_KRASSNER, description=f'"Remembering Lenny Bruce While We\'re Thinking About Trump" (draft?)'),
|
|
850
|
+
DocCfg(id='019088', author=PAUL_KRASSNER, description=f'"Are Rape Jokes Funny?" (draft)', date='2012-07-28'),
|
|
851
|
+
DocCfg(id='012740', author=PEGGY_SIEGAL, description=f"article about Venice Film Festival"),
|
|
852
|
+
DocCfg(id='013442', author=PEGGY_SIEGAL, description=f"draft about Oscars", date='2011-02-27'),
|
|
853
|
+
DocCfg(id='012700', author=PEGGY_SIEGAL, description=f"film events diary", date='2011-02-27'),
|
|
854
|
+
DocCfg(id='012690', author=PEGGY_SIEGAL, description=f"film events diary early draft of 012700", date='2011-02-27'),
|
|
855
|
+
DocCfg(id='013450', author=PEGGY_SIEGAL, description=f"Oscar Diary in Avenue Magazine", date='2011-02-27'),
|
|
856
|
+
DocCfg(id='010715', author=PEGGY_SIEGAL, description=f"Oscar Diary April", date='2012-02-27'),
|
|
857
|
+
DocCfg(id='019849', author=PEGGY_SIEGAL, description=f"Oscar Diary April", date='2017-02-27', duplicate_ids=['019864']),
|
|
858
|
+
DocCfg(id='033253', author=ROBERT_LAWRENCE_KUHN, description=f'{BBC} article about Rohingya in Myanmar'),
|
|
859
|
+
DocCfg(id='026887', author=ROBERT_LAWRENCE_KUHN, description=f'{BBC} "New Tariffs - Trade War"'),
|
|
860
|
+
DocCfg(id='026877', author=ROBERT_LAWRENCE_KUHN, description=f'{CNN} "New Tariffs - Trade War"'),
|
|
861
|
+
DocCfg(id='026868', author=ROBERT_LAWRENCE_KUHN, description=f'{CNN} "Quest Means Business New China Tariffs — Trade War"', date='2018-09-18'),
|
|
862
|
+
DocCfg(id='023707', author=ROBERT_LAWRENCE_KUHN, description=f'{CNN} "Quest Means Business U.S. and China Agree to Pause Trade War"', date='2018-12-03'),
|
|
863
|
+
DocCfg(id='029176', author=ROBERT_LAWRENCE_KUHN, description=f'{CNN} "U.S. China Tariffs - Trade War"'),
|
|
864
|
+
DocCfg(id='032638', author=ROBERT_LAWRENCE_KUHN, description=f'{CNN} "Xi Jinping and the New Politburo Committee"'),
|
|
865
|
+
DocCfg(id='023666', author=ROBERT_LAWRENCE_KUHN, description=f"sizzle reel / television appearances"),
|
|
866
|
+
DocCfg(id='025104', author='SCMP', description=f"article about China and globalisation"),
|
|
867
|
+
DocCfg(id='033379', author=WAPO, description=f'How Washington Pivoted From Finger-Wagging to Appeasement (about Viktor Orban)', date='2018-05-25'),
|
|
868
|
+
DocCfg(
|
|
900
869
|
id='031396',
|
|
901
870
|
author=WAPO,
|
|
902
871
|
description=f"DOJ discipline office with limited reach to probe handling of controversial sex abuse case",
|
|
903
872
|
date='2019-02-06',
|
|
904
873
|
duplicate_ids=['031415'],
|
|
905
874
|
),
|
|
906
|
-
|
|
875
|
+
DocCfg(
|
|
907
876
|
id='030199',
|
|
908
877
|
description=f'article about allegations Trump raped a 13 year old girl {JANE_DOE_V_EPSTEIN_TRUMP}',
|
|
909
878
|
date='2017-11-16',
|
|
910
879
|
),
|
|
911
|
-
|
|
912
|
-
|
|
913
|
-
|
|
914
|
-
|
|
915
|
-
|
|
916
|
-
|
|
917
|
-
|
|
918
|
-
|
|
919
|
-
|
|
920
|
-
|
|
921
|
-
|
|
922
|
-
|
|
923
|
-
|
|
924
|
-
|
|
925
|
-
|
|
926
|
-
|
|
927
|
-
|
|
928
|
-
|
|
929
|
-
FileCfg(
|
|
880
|
+
DocCfg(id='031725', description=f"article about Gloria Allred and Trump allegations", date='2016-10-10'),
|
|
881
|
+
DocCfg(id='031198', description=f"article about identify of Jane Doe in {JANE_DOE_V_EPSTEIN_TRUMP}"),
|
|
882
|
+
DocCfg(id='012704', description=f"article about {JANE_DOE_V_USA} and {CVRA}", date='2011-04-21'),
|
|
883
|
+
DocCfg(id='026648', description=f'article about {JASTA} lawsuit against Saudi Arabia by 9/11 victims (Russian propaganda?)', date='2017-05-13'),
|
|
884
|
+
DocCfg(id='031776', description=f"article about Michael Avenatti by Andrew Strickler"),
|
|
885
|
+
DocCfg(id='032159', description=f"article about microfinance and cell phones in Zimbabwe, Strive Masiyiwa (Econet Wireless)"),
|
|
886
|
+
DocCfg(id='030258', description=f'{ARTICLE_DRAFT} Mueller probe, almost same as 030248'),
|
|
887
|
+
DocCfg(id='030248', description=f'{ARTICLE_DRAFT} Mueller probe, almost same as 030258'),
|
|
888
|
+
DocCfg(id='029165', description=f'{ARTICLE_DRAFT} Mueller probe, almost same as 030258'),
|
|
889
|
+
DocCfg(id='033468', description=f'{ARTICLE_DRAFT} Rod Rosenstein', date='2018-09-24'),
|
|
890
|
+
DocCfg(id='030825', description=f'{ARTICLE_DRAFT} Syria'),
|
|
891
|
+
DocCfg(id='030013', description=f'Aviation International News article', date='2012-07-01'),
|
|
892
|
+
DocCfg(id='014865', description=f"Boston Globe article about {ALAN_DERSHOWITZ}"),
|
|
893
|
+
DocCfg(id='033231', description=f"Business Standard article about Trump's visit with India's Modi"),
|
|
894
|
+
DocCfg(id='023567', description=f"Financial Times article about quantitative easing"),
|
|
895
|
+
DocCfg(id='026761', description=f"Forbes article about {BARBRO_C_EHNBOM} 'Swedish American Group Focuses On Cancer'"),
|
|
896
|
+
DocCfg(id='031716', description=f'Fortune Magazine article by {TOM_BARRACK}', date='2016-10-22'),
|
|
897
|
+
DocCfg(
|
|
930
898
|
id='019233',
|
|
931
899
|
description=f"Freedom House: 'Breaking Down Democracy: Goals, Strategies, and Methods of Modern Authoritarians'",
|
|
932
900
|
date='2017-06-02',
|
|
933
901
|
),
|
|
934
|
-
|
|
935
|
-
|
|
936
|
-
|
|
937
|
-
|
|
938
|
-
|
|
939
|
-
|
|
940
|
-
|
|
941
|
-
|
|
942
|
-
|
|
943
|
-
|
|
902
|
+
DocCfg(id='019444', description=f"Frontlines magazine article 'Biologists Dig Deeper'", date='2008-01-01'),
|
|
903
|
+
DocCfg(id='023720', description=f'Future Science article: "Is Shame Necessary?" by {JENNIFER_JACQUET}'),
|
|
904
|
+
DocCfg(id='027051', description=f"German language article about the 2013 Lifeball / AIDS Gala", date='2013-01-01'),
|
|
905
|
+
DocCfg(id='021094', description=f"Globe and Mail article about Gerd Heinrich"),
|
|
906
|
+
DocCfg(id='013268', description=f"JetGala article about airplane interior designer {ERIC_ROTH}"),
|
|
907
|
+
DocCfg(id='033480', description=f"{JOHN_BOLTON_PRESS_CLIPPING}", date='2018-04-06', duplicate_ids=['033481']),
|
|
908
|
+
DocCfg(id='013403', description=f"Lexis Nexis result from The Evening Standard about Bernie Madoff", date='2009-12-24'),
|
|
909
|
+
DocCfg(id='023102', description=f"Litigation Daily article about {REID_WEINGARTEN}", date='2015-09-04'),
|
|
910
|
+
DocCfg(id='029340', description=f'MarketWatch article about estate taxes, particularly Epstein\'s favoured GRATs'),
|
|
911
|
+
DocCfg(
|
|
944
912
|
id='029416',
|
|
945
913
|
description=f"National Enquirer / Radar Online v. FBI FOIA lawsuit court filing",
|
|
946
914
|
date='2017-05-25',
|
|
947
915
|
duplicate_ids=['029405']
|
|
948
916
|
),
|
|
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
|
-
|
|
917
|
+
DocCfg(id='015462', description=f'Nautilus Education magazine (?) issue'),
|
|
918
|
+
DocCfg(id='029925', description=f"New Yorker article about the placebo effect by Michael Specter"),
|
|
919
|
+
DocCfg(id='031972', description=f"{NYT_ARTICLE} #MeToo allegations against {LAWRENCE_KRAUSS}", date='2018-03-07'),
|
|
920
|
+
DocCfg(id='032435', description=f'{NYT_ARTICLE} Chinese butlers'),
|
|
921
|
+
DocCfg(id='029452', description=f"{NYT_ARTICLE} {PETER_THIEL}"),
|
|
922
|
+
DocCfg(id='025328', description=f"{NYT_ARTICLE} radio host Bob Fass and Robert Durst"),
|
|
923
|
+
DocCfg(id='033479', description=f"{NYT_ARTICLE} Rex Tillerson", date='2010-03-14'),
|
|
924
|
+
DocCfg(id='028481', description=f'{NYT_ARTICLE} {STEVE_BANNON}', date='2018-03-09'),
|
|
925
|
+
DocCfg(id='033181', description=f'{NYT_ARTICLE} Trump\'s tax avoidance', date='2016-10-31'),
|
|
926
|
+
DocCfg(id='023097', description=f"{NYT_COLUMN} The Aristocrats by Frank Rich 'The Greatest Dirty Joke Ever Told'"),
|
|
927
|
+
DocCfg(id='033365', description=f'{NYT_COLUMN} trade war with China by Kevin Rudd'),
|
|
928
|
+
DocCfg(id='019439', description=f"{NYT_COLUMN} the Clintons and money by Maureen Dowd", date='2013-08-17'),
|
|
929
|
+
DocCfg(id='021093', description=f"page of unknown article about Epstein and Maxwell"),
|
|
930
|
+
DocCfg(id='013435', description=f"{PALM_BEACH_DAILY_ARTICLE} Epstein's address book", date='2011-03-11'),
|
|
931
|
+
DocCfg(id='013440', description=f"{PALM_BEACH_DAILY_ARTICLE} Epstein's gag order", date='2011-07-13'),
|
|
932
|
+
DocCfg(id='029238', description=f"{PALM_BEACH_DAILY_ARTICLE} Epstein's plea deal"),
|
|
933
|
+
DocCfg(id='021775', description=f"{PALM_BEACH_POST_ARTICLE} 'He Was 50. And They Were Girls'"),
|
|
934
|
+
DocCfg(id='022989', description=f"{PALM_BEACH_POST_ARTICLE} alleged rape of 13 year old by Trump"),
|
|
935
|
+
DocCfg(id='022987', description=f"{PALM_BEACH_POST_ARTICLE} just a headline on Trump and Epstein"),
|
|
936
|
+
DocCfg(id='015028', description=f"{PALM_BEACH_POST_ARTICLE} reopening Epstein's criminal case"),
|
|
937
|
+
DocCfg(id='022990', description=f"{PALM_BEACH_POST_ARTICLE} Trump and Epstein"),
|
|
938
|
+
DocCfg(id='016996', description=f'SciencExpress article "Quantitative Analysis of Culture Using Millions of Digitized Books" by Jean-Baptiste Michel'),
|
|
939
|
+
DocCfg(id='030030', description=SHIMON_POST_ARTICLE, date='2011-03-29'),
|
|
940
|
+
DocCfg(id='025610', description=SHIMON_POST_ARTICLE, date='2011-04-03'),
|
|
941
|
+
DocCfg(id='023458', description=SHIMON_POST_ARTICLE, date='2011-04-17'),
|
|
942
|
+
DocCfg(id='023487', description=SHIMON_POST_ARTICLE, date='2011-04-18'),
|
|
943
|
+
DocCfg(id='030531', description=SHIMON_POST_ARTICLE, date='2011-05-16'),
|
|
944
|
+
DocCfg(id='024958', description=SHIMON_POST_ARTICLE, date='2011-05-08'),
|
|
945
|
+
DocCfg(id='030060', description=SHIMON_POST_ARTICLE, date='2011-05-13'),
|
|
946
|
+
DocCfg(id='031834', description=SHIMON_POST_ARTICLE, date='2011-05-16'),
|
|
947
|
+
DocCfg(id='023517', description=SHIMON_POST_ARTICLE, date='2011-05-26'),
|
|
948
|
+
DocCfg(id='030268', description=SHIMON_POST_ARTICLE, date='2011-05-29'),
|
|
949
|
+
DocCfg(id='029628', description=SHIMON_POST_ARTICLE, date='2011-06-04'),
|
|
950
|
+
DocCfg(id='018085', description=SHIMON_POST_ARTICLE, date='2011-06-07'),
|
|
951
|
+
DocCfg(id='030156', description=SHIMON_POST_ARTICLE, date='2011-06-22'),
|
|
952
|
+
DocCfg(id='031876', description=SHIMON_POST_ARTICLE, date='2011-06-14'),
|
|
953
|
+
DocCfg(id='032171', description=SHIMON_POST_ARTICLE, date='2011-06-26'),
|
|
954
|
+
DocCfg(id='029932', description=SHIMON_POST_ARTICLE, date='2011-07-03'),
|
|
955
|
+
DocCfg(id='031913', description=SHIMON_POST_ARTICLE, date='2011-08-24'),
|
|
956
|
+
DocCfg(id='024592', description=SHIMON_POST_ARTICLE, date='2011-08-25'),
|
|
957
|
+
DocCfg(id='024997', description=SHIMON_POST_ARTICLE, date='2011-09-08'),
|
|
958
|
+
DocCfg(id='031941', description=SHIMON_POST_ARTICLE, date='2011-11-17'),
|
|
959
|
+
DocCfg(id='021092', description=f'{SINGLE_PAGE} Tatler article about {GHISLAINE_MAXWELL} shredding documents', date='2019-08-15'),
|
|
960
|
+
DocCfg(id='031191', description=f"{SINGLE_PAGE} unknown article about Epstein and Trump's relationship in 1997"),
|
|
961
|
+
DocCfg(id='030829', description=f'South Florida Sun Sentinel article about {BRAD_EDWARDS} and {JEFFREY_EPSTEIN}'),
|
|
962
|
+
DocCfg(id='026520', description=f'Spanish language article about {SULTAN_BIN_SULAYEM}', date='2013-09-27'),
|
|
963
|
+
DocCfg(id='030333', description=f'The Independent article about Prince Andrew, Epstein, and Epstein\'s butler who stole his address book'),
|
|
964
|
+
DocCfg(
|
|
997
965
|
id='031736',
|
|
998
966
|
description=f"{TRANSLATION} Arabic article by Abdulnaser Salamah 'Trump; Prince of Believers (Caliph)!'",
|
|
999
967
|
date='2017-05-13',
|
|
1000
968
|
),
|
|
1001
|
-
|
|
1002
|
-
|
|
1003
|
-
|
|
1004
|
-
|
|
1005
|
-
|
|
1006
|
-
|
|
1007
|
-
|
|
1008
|
-
|
|
1009
|
-
|
|
1010
|
-
|
|
1011
|
-
|
|
969
|
+
DocCfg(id='025094', description=f'{TRANSLATION} Spanish article about Cuba', date='2015-11-08'),
|
|
970
|
+
DocCfg(id='010754', description=f"U.S. News article about Yitzhak Rabin"),
|
|
971
|
+
DocCfg(id='031794', description=f"very short French magazine clipping"),
|
|
972
|
+
DocCfg(id='014498', description=VI_DAILY_NEWS_ARTICLE, date='2016-12-13'),
|
|
973
|
+
DocCfg(id='031171', description=VI_DAILY_NEWS_ARTICLE, date='2019-02-06'),
|
|
974
|
+
DocCfg(id='023048', description=VI_DAILY_NEWS_ARTICLE, date='2019-02-27'),
|
|
975
|
+
DocCfg(id='023046', description=VI_DAILY_NEWS_ARTICLE, date='2019-02-27'),
|
|
976
|
+
DocCfg(id='031170', description=VI_DAILY_NEWS_ARTICLE, date='2019-03-06'),
|
|
977
|
+
DocCfg(id='016506', description=VI_DAILY_NEWS_ARTICLE, date='2019-02-28'),
|
|
978
|
+
DocCfg(id='016507', description=f"{VI_DAILY_NEWS_ARTICLE} 'Perversion of Justice' by {JULIE_K_BROWN}", date='2018-12-19'),
|
|
979
|
+
DocCfg(id='019212', description=f'{WAPO} and Times Tribune articles about Bannon, Trump, and healthcare execs'),
|
|
980
|
+
]
|
|
1012
981
|
|
|
1013
|
-
|
|
1014
|
-
|
|
1015
|
-
|
|
1016
|
-
|
|
1017
|
-
|
|
1018
|
-
|
|
1019
|
-
|
|
1020
|
-
|
|
1021
|
-
|
|
1022
|
-
|
|
1023
|
-
|
|
982
|
+
OTHER_FILES_LEGAL = [
|
|
983
|
+
DocCfg(id='025353', author=KEN_STARR, description=KEN_STARR_LETTER, date='2008-05-19', duplicate_ids=['010723', '019224'], dupe_type='redacted'),
|
|
984
|
+
DocCfg(id='025704', author=KEN_STARR, description=KEN_STARR_LETTER, date='2008-05-27', duplicate_ids=['010732', '019221'], dupe_type='redacted'),
|
|
985
|
+
DocCfg(id='012130', author=KEN_STARR, description=KEN_STARR_LETTER, date='2008-06-19', duplicate_ids=['012135']),
|
|
986
|
+
DocCfg(id='011908', author=BRUNEL_V_EPSTEIN, description=f"court filing"),
|
|
987
|
+
DocCfg(id='017603', description=DAVID_SCHOEN_CVRA_LEXIS_SEARCH, date='2019-02-28'),
|
|
988
|
+
DocCfg(id='017635', description=DAVID_SCHOEN_CVRA_LEXIS_SEARCH, date='2019-02-28'),
|
|
989
|
+
DocCfg(id='016509', description=DAVID_SCHOEN_CVRA_LEXIS_SEARCH, date='2019-02-28'),
|
|
990
|
+
DocCfg(id='017714', description=DAVID_SCHOEN_CVRA_LEXIS_SEARCH, date='2019-02-28'),
|
|
991
|
+
DocCfg(id='021824', author=EDWARDS_V_DERSHOWITZ, description=f"deposition of {PAUL_G_CASSELL}"),
|
|
992
|
+
DocCfg(
|
|
1024
993
|
id='010757',
|
|
1025
|
-
|
|
994
|
+
author=EDWARDS_V_DERSHOWITZ,
|
|
995
|
+
description=f"plaintiff response to Dershowitz Motion to Determine Confidentiality of Court Records",
|
|
1026
996
|
date='2015-11-23',
|
|
1027
997
|
),
|
|
1028
|
-
|
|
998
|
+
DocCfg(
|
|
1029
999
|
id='010887',
|
|
1030
|
-
|
|
1000
|
+
author=EDWARDS_V_DERSHOWITZ,
|
|
1001
|
+
description=f"Dershowitz Motion for Clarification of Confidentiality Order",
|
|
1031
1002
|
date='2016-01-29',
|
|
1032
1003
|
),
|
|
1033
|
-
|
|
1004
|
+
DocCfg(
|
|
1034
1005
|
id='015590',
|
|
1035
|
-
|
|
1006
|
+
author=EDWARDS_V_DERSHOWITZ,
|
|
1007
|
+
description=f"Dershowitz Redacted Motion to Modify Confidentiality Order",
|
|
1036
1008
|
date='2016-02-03',
|
|
1037
1009
|
),
|
|
1038
|
-
|
|
1010
|
+
DocCfg(
|
|
1039
1011
|
id='015650',
|
|
1040
|
-
|
|
1012
|
+
author=EDWARDS_V_DERSHOWITZ,
|
|
1013
|
+
description=f"Giuffre Response to Dershowitz Motion for Clarification of Confidentiality Order",
|
|
1041
1014
|
date='2016-02-08',
|
|
1042
1015
|
),
|
|
1043
|
-
|
|
1044
|
-
|
|
1045
|
-
|
|
1046
|
-
|
|
1047
|
-
|
|
1048
|
-
|
|
1049
|
-
|
|
1050
|
-
|
|
1051
|
-
|
|
1052
|
-
|
|
1053
|
-
|
|
1054
|
-
|
|
1055
|
-
|
|
1056
|
-
|
|
1057
|
-
|
|
1058
|
-
|
|
1016
|
+
DocCfg(id='010566', author=EPSTEIN_V_ROTHSTEIN_EDWARDS, description=f"Statement of Undisputed Facts", date='2010-11-04'),
|
|
1017
|
+
DocCfg(id='012707', author=EPSTEIN_V_ROTHSTEIN_EDWARDS, description=f"Master Contact List - Privilege Log", date='2011-03-22'),
|
|
1018
|
+
DocCfg(id='012103', author=EPSTEIN_V_ROTHSTEIN_EDWARDS, description=f"Telephone Interview with {VIRGINIA_GIUFFRE}", date='2011-05-17'),
|
|
1019
|
+
DocCfg(id='017488', author=EPSTEIN_V_ROTHSTEIN_EDWARDS, description=f"Deposition of Scott Rothstein", date='2012-06-22'),
|
|
1020
|
+
DocCfg(id='029315', author=EPSTEIN_V_ROTHSTEIN_EDWARDS, description=f"Plaintiff Motion for Summary Judgment by {JACK_SCAROLA}", date='2013-09-13'),
|
|
1021
|
+
DocCfg(id='013304', author=EPSTEIN_V_ROTHSTEIN_EDWARDS, description=f"Plaintiff Response to Epstein's Motion for Summary Judgment", date='2014-04-17'),
|
|
1022
|
+
DocCfg(id='019352', description=FBI_REPORT,),
|
|
1023
|
+
DocCfg(id='021434', description=FBI_REPORT,),
|
|
1024
|
+
DocCfg(id='018872', description=FBI_SEIZED_PROPERTY,),
|
|
1025
|
+
DocCfg(id='021569', description=FBI_SEIZED_PROPERTY,),
|
|
1026
|
+
DocCfg(id='017792', author=GIUFFRE_V_DERSHOWITZ, description=f"article about {ALAN_DERSHOWITZ}'s appearance on Wolf Blitzer"),
|
|
1027
|
+
DocCfg(id='017767', author=GIUFFRE_V_DERSHOWITZ, description=f"article about {ALAN_DERSHOWITZ} working with {JEFFREY_EPSTEIN}"),
|
|
1028
|
+
DocCfg(id='017796', author=GIUFFRE_V_DERSHOWITZ, description=f"article about {ALAN_DERSHOWITZ}"),
|
|
1029
|
+
DocCfg(id='017935', author=GIUFFRE_V_DERSHOWITZ, description=f"defamation complaint", date='2019-04-16'),
|
|
1030
|
+
DocCfg(id='017824', author=GIUFFRE_V_DERSHOWITZ, description=f"{MIAMI_HERALD} article by {JULIE_K_BROWN}"),
|
|
1031
|
+
DocCfg(
|
|
1059
1032
|
id='017818',
|
|
1060
|
-
|
|
1033
|
+
author=GIUFFRE_V_DERSHOWITZ,
|
|
1034
|
+
description=f"{MIAMI_HERALD} article about accusations against {ALAN_DERSHOWITZ} by {JULIE_K_BROWN}",
|
|
1061
1035
|
date='2018-12-27',
|
|
1062
1036
|
),
|
|
1063
|
-
|
|
1064
|
-
|
|
1065
|
-
|
|
1066
|
-
|
|
1067
|
-
|
|
1068
|
-
|
|
1069
|
-
|
|
1070
|
-
|
|
1071
|
-
|
|
1072
|
-
|
|
1037
|
+
DocCfg(id='017800', author=GIUFFRE_V_DERSHOWITZ, description=f'{MIAMI_HERALD} "Perversion of Justice" by {JULIE_K_BROWN}'),
|
|
1038
|
+
DocCfg(id='022237', author=GIUFFRE_V_DERSHOWITZ, description=f"partial court filing with fact checking questions?"),
|
|
1039
|
+
DocCfg(id='016197', author=GIUFFRE_V_DERSHOWITZ, description=f"response to Florida Bar complaint by {ALAN_DERSHOWITZ} about David Boies from {PAUL_G_CASSELL}"),
|
|
1040
|
+
DocCfg(id='017771', author=GIUFFRE_V_DERSHOWITZ, description=f'Vanity Fair article "The Talented Mr. Epstein" by Vicky Ward', date='2011-06-27'),
|
|
1041
|
+
DocCfg(id='014118', author=GIUFFRE_V_EPSTEIN, description=f"Declaration in Support of Motion to Compel Production of Documents", date='2016-10-21'),
|
|
1042
|
+
DocCfg(id='014652', author=GIUFFRE_V_MAXWELL, description=f"Complaint", date='2015-04-22'),
|
|
1043
|
+
DocCfg(id='015529', author=GIUFFRE_V_MAXWELL, description=f"Defamation Complaint", date='2015-09-21'),
|
|
1044
|
+
DocCfg(id='014797', author=GIUFFRE_V_MAXWELL, description=f"Declaration of Laura A. Menninger in Opposition to Plaintiff's Motion", date='2017-03-17'),
|
|
1045
|
+
DocCfg(id='011304', author=GIUFFRE_V_MAXWELL, description=f"Oral Argument Transcript", date='2017-03-17'),
|
|
1046
|
+
DocCfg(
|
|
1073
1047
|
id='014788',
|
|
1074
|
-
|
|
1048
|
+
author=GIUFFRE_V_MAXWELL,
|
|
1049
|
+
description=f"Maxwell Response to Plaintiff's Omnibus Motion in Limine",
|
|
1075
1050
|
date='2017-03-17',
|
|
1076
1051
|
duplicate_ids=['011463'],
|
|
1077
1052
|
),
|
|
1078
|
-
|
|
1053
|
+
DocCfg(
|
|
1079
1054
|
id='019297',
|
|
1080
|
-
|
|
1055
|
+
author=GIUFFRE_V_MAXWELL,
|
|
1056
|
+
description=f'letter from {ALAN_DERSHOWITZ} lawyer Andrew G. Celli',
|
|
1081
1057
|
date='2018-02-07'
|
|
1082
1058
|
),
|
|
1083
|
-
|
|
1059
|
+
DocCfg(
|
|
1084
1060
|
id='025937',
|
|
1085
|
-
|
|
1061
|
+
author=JANE_DOE_V_EPSTEIN_TRUMP,
|
|
1062
|
+
description=f'Affidavit of Tiffany Doe describing Jane Doe being raped by Epstein and Trump',
|
|
1086
1063
|
date='2016-06-20',
|
|
1087
1064
|
),
|
|
1088
|
-
|
|
1089
|
-
|
|
1090
|
-
|
|
1091
|
-
|
|
1092
|
-
|
|
1093
|
-
|
|
1094
|
-
|
|
1095
|
-
|
|
1096
|
-
|
|
1097
|
-
|
|
1098
|
-
|
|
1099
|
-
|
|
1100
|
-
|
|
1101
|
-
|
|
1102
|
-
|
|
1103
|
-
FileCfg(
|
|
1065
|
+
DocCfg(id='025939', author=JANE_DOE_V_EPSTEIN_TRUMP, description=f'Affidavit of Jane Doe describing being raped by Epstein', date='2016-06-20'),
|
|
1066
|
+
DocCfg(id='013489', author=JANE_DOE_V_EPSTEIN_TRUMP, description=f'Affidavit of {BRAD_EDWARDS}', date='2010-07-20'),
|
|
1067
|
+
DocCfg(id='029398', author=JANE_DOE_V_EPSTEIN_TRUMP, description=f'article in Law.com'),
|
|
1068
|
+
DocCfg(id='026854', author=JANE_DOE_V_EPSTEIN_TRUMP, description=f"Civil Docket"),
|
|
1069
|
+
DocCfg(id='026384', author=JANE_DOE_V_EPSTEIN_TRUMP, description=f"Complaint for rape and sexual abuse", date='2016-06-20'),
|
|
1070
|
+
DocCfg(id='013463', author=JANE_DOE_V_EPSTEIN_TRUMP, description=f'Deposition of Scott Rothstein', date='2010-03-23'),
|
|
1071
|
+
DocCfg(id='029257', author=JANE_DOE_V_EPSTEIN_TRUMP, description=f'allegations and identity of plaintiff Katie Johnson', date='2016-04-26'),
|
|
1072
|
+
DocCfg(id='032321', author=JANE_DOE_V_EPSTEIN_TRUMP, description=f"Notice of Initial Conference", date='2016-10-04'),
|
|
1073
|
+
DocCfg(id='010735', author=JANE_DOE_V_USA, description=f"Dershowitz Reply in Support of Motion for Limited Intervention", date='2015-02-02'),
|
|
1074
|
+
DocCfg(id='014084', author=JANE_DOE_V_USA, description=f"Jane Doe Response to Dershowitz's Motion for Limited Intervention", date='2015-03-24'),
|
|
1075
|
+
DocCfg(id='023361', author=JASTA_SAUDI_LAWSUIT, description=f"legal text and court documents", date='2012-01-20'),
|
|
1076
|
+
DocCfg(id='017830', author=JASTA_SAUDI_LAWSUIT, description=f"legal text and court documents"),
|
|
1077
|
+
DocCfg(id='017904', author=JASTA_SAUDI_LAWSUIT, description=f"Westlaw search results", date='2019-01-01'),
|
|
1078
|
+
DocCfg(id='014037', author='Journal of Criminal Law and Criminology', description=f"article on {CVRA}"),
|
|
1079
|
+
DocCfg(
|
|
1104
1080
|
id='010560',
|
|
1105
|
-
|
|
1081
|
+
author='Gloria Allred',
|
|
1082
|
+
description=f"letter to {SCOTT_J_LINK} alleging abuse of a girl from Kansas",
|
|
1106
1083
|
date='2019-06-19',
|
|
1107
1084
|
),
|
|
1108
|
-
|
|
1085
|
+
DocCfg(
|
|
1109
1086
|
id='031447',
|
|
1110
|
-
|
|
1087
|
+
author=MARTIN_WEINBERG,
|
|
1088
|
+
description=f"letter from to Melanie Ann Pustay and Sean O'Neill re: an Epstein FOIA request"
|
|
1111
1089
|
),
|
|
1112
|
-
|
|
1090
|
+
DocCfg(
|
|
1113
1091
|
id='028965',
|
|
1114
|
-
|
|
1092
|
+
author=MARTIN_WEINBERG,
|
|
1093
|
+
description=f"letter from to ABC / Good Morning America threatening libel lawsuit",
|
|
1115
1094
|
duplicate_ids=['028928']
|
|
1116
1095
|
),
|
|
1117
|
-
|
|
1096
|
+
DocCfg(
|
|
1097
|
+
id='016420',
|
|
1098
|
+
author=NEW_YORK_V_EPSTEIN,
|
|
1099
|
+
description=f"New York Post Motion to Unseal Appellate Briefs",
|
|
1100
|
+
date='2019-01-11',
|
|
1101
|
+
),
|
|
1102
|
+
DocCfg(id='028540', author='SCOTUS', description=f"decision in Budha Ismail Jam et al. v. INTERNATIONAL FINANCE CORP"),
|
|
1103
|
+
DocCfg(id='012197', author='SDFL', description=f"Response to {JAY_LEFKOWITZ} on Epstein Plea Agreement Compliance"),
|
|
1104
|
+
DocCfg(id='020662', author='Mishcon de Reya', description=f"letter from {ALAN_DERSHOWITZ}'s British lawyers to Daily Mail threatening libel suit"),
|
|
1105
|
+
DocCfg(
|
|
1118
1106
|
id='026793',
|
|
1119
1107
|
description=f"letter from {STEVEN_HOFFENBERG}'s lawyers at Mintz Fraade offering to take over Epstein's business and resolve his legal issues",
|
|
1120
1108
|
date='2018-03-23',
|
|
1121
1109
|
),
|
|
1122
|
-
|
|
1123
|
-
|
|
1124
|
-
description=f"{NEW_YORK_V_EPSTEIN} New York Post Motion to Unseal Appellate Briefs",
|
|
1125
|
-
date='2019-01-11',
|
|
1126
|
-
),
|
|
1127
|
-
FileCfg(id='028540', description=f"SCOTUS decision in Budha Ismail Jam et al. v. INTERNATIONAL FINANCE CORP"),
|
|
1128
|
-
FileCfg(id='012197', description=f"SDFL Response to {JAY_LEFKOWITZ} on Epstein Plea Agreement Compliance"),
|
|
1129
|
-
FileCfg(id='022277', description=f"{TEXT_OF_US_LAW} National Labour Relations Board (NLRB)"),
|
|
1110
|
+
DocCfg(id='022277', description=f"{TEXT_OF_US_LAW} National Labour Relations Board (NLRB)"),
|
|
1111
|
+
]
|
|
1130
1112
|
|
|
1131
|
-
|
|
1132
|
-
|
|
1133
|
-
|
|
1134
|
-
|
|
1135
|
-
|
|
1136
|
-
|
|
1137
|
-
|
|
1138
|
-
|
|
1139
|
-
|
|
1140
|
-
|
|
1141
|
-
|
|
1142
|
-
|
|
1143
|
-
|
|
1113
|
+
OTHER_FILES_CONFERENCES = [
|
|
1114
|
+
DocCfg(id='014315', author=BOFA_MERRILL, description=f'2016 Future of Financials Conference'),
|
|
1115
|
+
DocCfg(id='026825', author=DEUTSCHE_BANK, description=f"Asset & Wealth Management featured speaker bios"), # Really "Deutsche Asset" which may not be Deutsche Bank?
|
|
1116
|
+
DocCfg(id='023123', author=LAWRENCE_KRAUSS_ASU_ORIGINS, description=f"{STRANGE_BEDFELLOWS} (old draft)"),
|
|
1117
|
+
DocCfg(id='023120', author=LAWRENCE_KRAUSS_ASU_ORIGINS, description=STRANGE_BEDFELLOWS, duplicate_ids=['023121'], dupe_type='earlier'),
|
|
1118
|
+
DocCfg(id='031359', author=NOBEL_CHARITABLE_TRUST, description=f"Earth Environment Convention about ESG investing"),
|
|
1119
|
+
DocCfg(id='031354', author=NOBEL_CHARITABLE_TRUST, description=f'"Thinking About the Environment and Technology" report 2011'),
|
|
1120
|
+
DocCfg(id='019300', author=SVETLANA_POZHIDAEVA, description=f'{WOMEN_EMPOWERMENT} f. {KATHRYN_RUEMMLER}', date='2019-04-05'),
|
|
1121
|
+
DocCfg(id='022267', author=SVETLANA_POZHIDAEVA, description=f'{WOMEN_EMPOWERMENT} founder essay about growing the seminar business'),
|
|
1122
|
+
DocCfg(id='022407', author=SVETLANA_POZHIDAEVA, description=f'{WOMEN_EMPOWERMENT} seminar pitch deck'),
|
|
1123
|
+
DocCfg(id='017524', author=SWEDISH_LIFE_SCIENCES_SUMMIT, description=f"2012 program"),
|
|
1124
|
+
DocCfg(id='026747', author=SWEDISH_LIFE_SCIENCES_SUMMIT, description=f"2017 program", date='2017-08-23'),
|
|
1125
|
+
DocCfg(id='014951', author='TED Talks', description=f"2017 program", date='2017-04-20'),
|
|
1126
|
+
DocCfg(id='024179', author=UN_GENERAL_ASSEMBLY, description=f'president and first lady schedule', date='2012-09-21'),
|
|
1127
|
+
DocCfg(
|
|
1144
1128
|
id='024185',
|
|
1145
|
-
|
|
1129
|
+
author=UN_GENERAL_ASSEMBLY,
|
|
1130
|
+
description=f'schedule including "Presidents Private Dinner - Jeffrey Epstine (sic)"',
|
|
1146
1131
|
date='2012-09-21',
|
|
1147
1132
|
),
|
|
1148
|
-
|
|
1149
|
-
|
|
1150
|
-
|
|
1151
|
-
|
|
1152
|
-
FileCfg(id='022267', description=f'{WOMEN_EMPOWERMENT} founder essay about growing the seminar business'),
|
|
1153
|
-
FileCfg(id='022407', description=f'{WOMEN_EMPOWERMENT} seminar pitch deck'),
|
|
1154
|
-
FileCfg(
|
|
1133
|
+
DocCfg(id='017526', description=f'Intellectual Jazz conference brochure f. {DAVID_BLAINE}'),
|
|
1134
|
+
DocCfg(id='029427', description=f"seems related to an IRL meeting about concerns China will attempt to absorb Mongolia"),
|
|
1135
|
+
DocCfg(id='025797', description=f'someone\'s notes from Aspen Strategy Group', date='2013-05-29'),
|
|
1136
|
+
DocCfg(
|
|
1155
1137
|
id='017060',
|
|
1156
1138
|
description=f'World Economic Forum (WEF) Annual Meeting 2011 List of Participants',
|
|
1157
1139
|
date='2011-01-18',
|
|
1158
1140
|
),
|
|
1141
|
+
]
|
|
1159
1142
|
|
|
1160
|
-
|
|
1161
|
-
|
|
1162
|
-
|
|
1163
|
-
|
|
1164
|
-
|
|
1165
|
-
|
|
1166
|
-
|
|
1167
|
-
|
|
1168
|
-
|
|
1169
|
-
|
|
1170
|
-
|
|
1171
|
-
|
|
1172
|
-
|
|
1173
|
-
|
|
1174
|
-
|
|
1175
|
-
|
|
1176
|
-
|
|
1177
|
-
|
|
1178
|
-
|
|
1179
|
-
|
|
1180
|
-
|
|
1181
|
-
|
|
1182
|
-
|
|
1183
|
-
|
|
1184
|
-
|
|
1185
|
-
|
|
1186
|
-
|
|
1187
|
-
|
|
1188
|
-
|
|
1189
|
-
|
|
1190
|
-
FileCfg(id='022372', description=f'Ernst & Young 2016 election report'),
|
|
1191
|
-
FileCfg(
|
|
1143
|
+
# All authors of documents in this category will be marked uninteresting
|
|
1144
|
+
OTHER_FILES_FINANCE = [
|
|
1145
|
+
DocCfg(id='016111', author=BOFA_MERRILL, description=f"GEMs Paper #26 Saudi Arabia: beyond oil but not so fast", date='2016-06-30'),
|
|
1146
|
+
DocCfg(id='010609', author=BOFA_MERRILL, description=f"Liquid Insight Trump\'s effect on MXN", date='2016-09-22'),
|
|
1147
|
+
DocCfg(id='025978', author=BOFA_MERRILL, description=f"Understanding when risk parity risk Increases", date='2016-08-09'),
|
|
1148
|
+
DocCfg(id='014404', author=BOFA_MERRILL, description=f'Japan Investment Strategy Report', date='2016-11-18'),
|
|
1149
|
+
DocCfg(id='014410', author=BOFA_MERRILL, description=f'Japan Investment Strategy Report', date='2016-11-18'),
|
|
1150
|
+
DocCfg(id='014424', author=BOFA_MERRILL, description=f"Japan Macro Watch", date='2016-11-14'),
|
|
1151
|
+
DocCfg(id='014731', author=BOFA_MERRILL, description=f"Global Rates, FX & EM 2017 Year Ahead", date='2016-11-16'),
|
|
1152
|
+
DocCfg(id='014432', author=BOFA_MERRILL, description=f"Global Cross Asset Strategy - Year Ahead The Trump inflection", date='2016-11-30'),
|
|
1153
|
+
DocCfg(id='014460', author=BOFA_MERRILL, description=f"European Equity Strategy 2017", date='2016-12-01'),
|
|
1154
|
+
DocCfg(id='014972', author=BOFA_MERRILL, description=f"Global Equity Volatility Insights", date='2017-06-20'),
|
|
1155
|
+
DocCfg(id='014622', author=BOFA_MERRILL, description=f"Top 10 US Ideas Quarterly", date='2017-01-03'),
|
|
1156
|
+
DocCfg(id='023069', author=BOFA_MERRILL, description=f"Equity Strategy Focus Point Death and Taxes", date='2017-01-29'),
|
|
1157
|
+
DocCfg(id='014721', author=BOFA_MERRILL, description=f"Cause and Effect Fade the Trump Risk Premium", date='2017-02-13'),
|
|
1158
|
+
DocCfg(id='014887', author=BOFA_MERRILL, description=f"Internet / e-Commerce", date='2017-04-06'),
|
|
1159
|
+
DocCfg(id='014873', author=BOFA_MERRILL, description=f"Hess Corp", date='2017-04-11'),
|
|
1160
|
+
DocCfg(id='023575', author=BOFA_MERRILL, description=f"Global Equity Volatility Insights", date='2017-06-01'),
|
|
1161
|
+
DocCfg(id='014518', author=BOFA_WEALTH_MGMT, description=f'tax alert', date='2016-05-02'),
|
|
1162
|
+
DocCfg(id='029438', author=BOFA_WEALTH_MGMT, description=f'tax report', date='2018-01-02'),
|
|
1163
|
+
DocCfg(id='024302', author='Carvana', description=f"form 14A SEC filing proxy statement", date='2019-04-23'),
|
|
1164
|
+
DocCfg(id='029305', author='CCH Tax', description=f"Briefing on end of Defense of Marriage Act", date='2013-06-27'),
|
|
1165
|
+
DocCfg(id='026794', author=DEUTSCHE_BANK, description=f"Global Political and Regulatory Risk in 2015/2016"),
|
|
1166
|
+
DocCfg(id='022361', author=DEUTSCHE_BANK_TAX_TOPICS, date='2013-05-01'),
|
|
1167
|
+
DocCfg(id='022325', author=DEUTSCHE_BANK_TAX_TOPICS, date='2013-12-20'),
|
|
1168
|
+
DocCfg(id='022330', author=DEUTSCHE_BANK_TAX_TOPICS, date='2013-12-20', description='table of contents'),
|
|
1169
|
+
DocCfg(id='019440', author=DEUTSCHE_BANK_TAX_TOPICS, date='2014-01-29'),
|
|
1170
|
+
DocCfg(id='024202', author=ELECTRON_CAPITAL_PARTNERS, description=f"Global Utility White Paper", date='2013-03-08'),
|
|
1171
|
+
DocCfg(id='022372', author='Ernst & Young', description=f'2016 election report'),
|
|
1172
|
+
DocCfg(
|
|
1192
1173
|
id='025663',
|
|
1193
|
-
|
|
1174
|
+
author=GOLDMAN_INVESTMENT_MGMT,
|
|
1175
|
+
description=f"An Overview of the Current State of Cryptocurrencies and Blockchain",
|
|
1194
1176
|
date='2017-11-15',
|
|
1177
|
+
is_interesting=True,
|
|
1195
1178
|
),
|
|
1196
|
-
|
|
1197
|
-
|
|
1198
|
-
|
|
1199
|
-
|
|
1200
|
-
|
|
1201
|
-
|
|
1202
|
-
|
|
1203
|
-
|
|
1204
|
-
|
|
1205
|
-
|
|
1206
|
-
|
|
1207
|
-
|
|
1208
|
-
|
|
1209
|
-
|
|
1210
|
-
|
|
1211
|
-
|
|
1212
|
-
|
|
1213
|
-
|
|
1214
|
-
|
|
1215
|
-
|
|
1216
|
-
|
|
1217
|
-
|
|
1218
|
-
|
|
1219
|
-
|
|
1220
|
-
|
|
1221
|
-
|
|
1222
|
-
),
|
|
1223
|
-
|
|
1224
|
-
|
|
1225
|
-
|
|
1226
|
-
FileCfg(id='019856', description=f"Sadis Goldberg LLP report on SCOTUS ruling about insider trading"),
|
|
1227
|
-
FileCfg(id='026827', description=f'Scowcroft Group report on ISIS', date='2015-11-14'),
|
|
1228
|
-
FileCfg(id='033220', description=f"short economic report on defense spending under Trump by Joseph G. Carson"),
|
|
1229
|
-
FileCfg(id='026856', author='Kevin Rudd', description=f"speech 'Xi Jinping, China And The Global Order'", date='2018-06-26'),
|
|
1230
|
-
FileCfg(id='024135', author=UBS, description=UBS_CIO_REPORT, date='2012-06-29'),
|
|
1231
|
-
FileCfg(id='025247', author=UBS, description=UBS_CIO_REPORT, date='2012-10-25'),
|
|
1232
|
-
FileCfg(id='025849', description=f"US Office of Government Information Services report: 'Building a Bridge Between FOIA Requesters & Agencies'"),
|
|
1233
|
-
FileCfg(id='020824', description=f"USA Inc: A Basic Summary of America's Financial Statements compiled by Mary Meeker", date='2011-02-01'),
|
|
1179
|
+
DocCfg(id='014532', author=GOLDMAN_INVESTMENT_MGMT, description=f"Outlook - Half Full", date='2017-01-01'),
|
|
1180
|
+
DocCfg(id='026909', author=GOLDMAN_INVESTMENT_MGMT, description=f"The Unsteady Undertow Commands the Seas (Temporarily)", date='2018-10-14'),
|
|
1181
|
+
DocCfg(id='026944', author=GOLDMAN_INVESTMENT_MGMT, description=f"Risk of a US-Iran Military Conflict", date='2019-05-23'),
|
|
1182
|
+
DocCfg(id='018804', author='Integra Realty Resources', description=f"appraisal of going concern for IGY American Yacht Harbor Marina in {VIRGIN_ISLANDS}"),
|
|
1183
|
+
DocCfg(id='026679', author='Invesco', description=f"Global Sovereign Asset Management Study 2017"),
|
|
1184
|
+
DocCfg(id='033220', author='Joseph G. Carson', description=f"short economic report on defense spending under Trump"),
|
|
1185
|
+
DocCfg(id='026572', author=JP_MORGAN, description=f"Global Asset Allocation report", date='2012-11-09'),
|
|
1186
|
+
DocCfg(id='030848', author=JP_MORGAN, description=f"Global Asset Allocation report", date='2013-03-28'),
|
|
1187
|
+
DocCfg(id='030840', author=JP_MORGAN, description=f"Market Thoughts"),
|
|
1188
|
+
DocCfg(id='022350', author=JP_MORGAN, description=f"tax efficiency of Intentionally Defective Grantor Trusts (IDGT)"),
|
|
1189
|
+
DocCfg(id='025242', author=JP_MORGAN, description=JP_MORGAN_EYE_ON_THE_MARKET, date='2012-04-09'),
|
|
1190
|
+
DocCfg(id='030010', author=JP_MORGAN, description=JP_MORGAN_EYE_ON_THE_MARKET, date='2011-06-14'),
|
|
1191
|
+
DocCfg(id='030808', author=JP_MORGAN, description=JP_MORGAN_EYE_ON_THE_MARKET, date='2011-07-11'),
|
|
1192
|
+
DocCfg(id='025221', author=JP_MORGAN, description=JP_MORGAN_EYE_ON_THE_MARKET, date='2011-07-25'),
|
|
1193
|
+
DocCfg(id='025229', author=JP_MORGAN, description=JP_MORGAN_EYE_ON_THE_MARKET, date='2011-08-04'),
|
|
1194
|
+
DocCfg(id='030814', author=JP_MORGAN, description=JP_MORGAN_EYE_ON_THE_MARKET, date='2011-11-21'),
|
|
1195
|
+
DocCfg(id='024132', author=JP_MORGAN, description=JP_MORGAN_EYE_ON_THE_MARKET, date='2012-03-15'),
|
|
1196
|
+
DocCfg(id='024194', author=JP_MORGAN, description=JP_MORGAN_EYE_ON_THE_MARKET, date='2012-10-22'),
|
|
1197
|
+
DocCfg(id='025296', author='Laffer Associates', description=f'report predicting Trump win', date='2016-07-06'),
|
|
1198
|
+
DocCfg(id='020824', author='Mary Meeker', description=f"USA Inc: A Basic Summary of America's Financial Statements compiled", date='2011-02-01'),
|
|
1199
|
+
DocCfg(id='025551', author='Morgan Stanley', description=f'report about alternative asset managers', date='2018-01-30'),
|
|
1200
|
+
DocCfg(id='025763', author='S&P', description=f"Economic Research: How Increasing Income Inequality Is Dampening U.S. Growth", date='2014-08-05'),
|
|
1201
|
+
DocCfg(id='024135', author=UBS, description=UBS_CIO_REPORT, date='2012-06-29'),
|
|
1202
|
+
DocCfg(id='025247', author=UBS, description=UBS_CIO_REPORT, date='2012-10-25'),
|
|
1203
|
+
DocCfg(id='024631', description=f"Ackrell Capital report: Cannabis Investment Report 2018"),
|
|
1204
|
+
DocCfg(id='026584', description=f"article about tax implications of disregarded entities", date='2009-07-01'),
|
|
1205
|
+
DocCfg(id='024271', description=f"Blockchain Capital and Brock Pierce pitch deck", date='2015-10-01'),
|
|
1206
|
+
DocCfg(id='024817', description=f"Cowen's Collective View of CBD / Cannabis report"),
|
|
1207
|
+
DocCfg(id='012048', description=f"{PRESS_RELEASE} 'Rockefeller Partners with Gregory J. Fleming to Create Independent Financial Services Firm' and other articles"),
|
|
1208
|
+
DocCfg(id='019856', description=f"Sadis Goldberg LLP report on SCOTUS ruling about insider trading"),
|
|
1234
1209
|
|
|
1235
|
-
#
|
|
1236
|
-
|
|
1237
|
-
|
|
1210
|
+
# private placement memoranda
|
|
1211
|
+
DocCfg(id='024432', description=f"Michael Milken's Knowledge Universe Education (KUE) $1,000,000 corporate share placement notice (SEC filing?)"),
|
|
1212
|
+
DocCfg(id='024003', description=f"New Leaf Ventures private placement memorandum"),
|
|
1213
|
+
]
|
|
1214
|
+
|
|
1215
|
+
OTHER_FILES_LETTERS = [
|
|
1216
|
+
DocCfg(id='017789', author=ALAN_DERSHOWITZ, description=f'letter to {HARVARD} Crimson complaining he was defamed'),
|
|
1217
|
+
DocCfg(id='026668', author="Boothbay Fund Management", description=f"2016-Q4 earnings report signed by Ari Glass"),
|
|
1218
|
+
DocCfg(
|
|
1238
1219
|
id='019086',
|
|
1239
1220
|
author=DAVID_BLAINE,
|
|
1240
1221
|
description=f"{DAVID_BLAINE_VISA_LETTER} from Russia 'Svet' ({SVETLANA_POZHIDAEVA}?), names Putin puppet regimes",
|
|
1241
1222
|
date='2015-05-27', # Date is a guess based on other drafts,
|
|
1242
1223
|
),
|
|
1243
|
-
|
|
1224
|
+
DocCfg(
|
|
1244
1225
|
id='019474',
|
|
1245
1226
|
author=DAVID_BLAINE,
|
|
1246
1227
|
description=f"{DAVID_BLAINE_VISA_LETTER} from Russia 'Svetlana' ({SVETLANA_POZHIDAEVA}?)",
|
|
1247
1228
|
date='2015-05-29',
|
|
1248
1229
|
),
|
|
1249
|
-
|
|
1230
|
+
DocCfg(
|
|
1250
1231
|
id='019476',
|
|
1251
1232
|
author=DAVID_BLAINE,
|
|
1252
1233
|
description=f"{DAVID_BLAINE_VISA_LETTER} (probably {SVETLANA_POZHIDAEVA}?)",
|
|
1253
1234
|
date='2015-06-01',
|
|
1254
1235
|
),
|
|
1255
|
-
|
|
1256
|
-
FileCfg(
|
|
1236
|
+
DocCfg(
|
|
1257
1237
|
id='026011',
|
|
1258
1238
|
author='Gennady Mashtalyar',
|
|
1259
1239
|
description=f"letter about algorithmic trading",
|
|
1260
1240
|
date='2016-06-24', # date is based on Brexit reference but he could be backtesting,
|
|
1261
1241
|
),
|
|
1262
|
-
|
|
1263
|
-
|
|
1264
|
-
|
|
1265
|
-
|
|
1266
|
-
|
|
1267
|
-
|
|
1268
|
-
|
|
1269
|
-
# private placement memoranda
|
|
1270
|
-
FileCfg(id='024432', description=f"Michael Milken's Knowledge Universe Education (KUE) $1,000,000 corporate share placement notice (SEC filing?)"),
|
|
1271
|
-
FileCfg(id='024003', description=f"New Leaf Ventures private placement memorandum"),
|
|
1272
|
-
FileCfg(id='018804', description=f"appraisal of going concern for IGY American Yacht Harbor Marina in {VIRGIN_ISLANDS}"),
|
|
1242
|
+
DocCfg(id='026248', author='Don McGahn', description=f'letter from Trump lawyer to Devin Nunes (R-CA) about FISA courts and Trump'),
|
|
1243
|
+
DocCfg(id='029304', author=DONALD_TRUMP, description=f"recommendation letter for recently departed {TRUMP_ORG} lawyer {MICHAEL_J_BOCCIO}"),
|
|
1244
|
+
DocCfg(id='029301', author=MICHAEL_J_BOCCIO, description=f"letter from former lawyer at the {TRUMP_ORG}", date='2011-08-07'),
|
|
1245
|
+
DocCfg(id='022405', author=NOAM_CHOMSKY, description=f"letter attesting to Epstein's good character"),
|
|
1246
|
+
DocCfg(id='026134', description=f'letter to someone named George about investment opportunities in the Ukraine banking sector'),
|
|
1247
|
+
]
|
|
1273
1248
|
|
|
1274
|
-
|
|
1275
|
-
|
|
1276
|
-
|
|
1277
|
-
|
|
1278
|
-
|
|
1279
|
-
|
|
1280
|
-
|
|
1281
|
-
|
|
1282
|
-
|
|
1283
|
-
|
|
1284
|
-
|
|
1285
|
-
|
|
1286
|
-
|
|
1287
|
-
|
|
1288
|
-
|
|
1289
|
-
|
|
1290
|
-
|
|
1291
|
-
|
|
1292
|
-
|
|
1249
|
+
OTHER_FILES_PROPERTY = [
|
|
1250
|
+
DocCfg(id='026759', author='Great Bay Condominium Owners Association', description=f'{PRESS_RELEASE} by about Hurricane Irma damage', date='2017-09-13'),
|
|
1251
|
+
DocCfg(id='027068', author=THE_REAL_DEAL, description=f"{THE_REAL_DEAL_ARTICLE} Palm House Hotel Bankruptcy and EB-5 Visa Fraud Allegations"),
|
|
1252
|
+
DocCfg(id='029520', author=THE_REAL_DEAL, description=f"{THE_REAL_DEAL_ARTICLE} 'Lost Paradise at the Palm House'", date='2019-06-17'),
|
|
1253
|
+
DocCfg(id='016597', author='Trump Properties LLC', description=f'appeal of some decision about Mar-a-Lago by {PALM_BEACH} authorities'),
|
|
1254
|
+
DocCfg(id='018743', description=f"Las Vegas property listing"),
|
|
1255
|
+
DocCfg(id='016602', description=PALM_BEACH_CODE_ENFORCEMENT, date='2008-04-17'),
|
|
1256
|
+
DocCfg(id='016554', description=PALM_BEACH_CODE_ENFORCEMENT, date='2008-07-17', duplicate_ids=['016616', '016574']),
|
|
1257
|
+
DocCfg(id='016695', description=f"{PALM_BEACH} property info (?)"),
|
|
1258
|
+
DocCfg(id='016697', description=f"{PALM_BEACH} property tax info (?) that mentions Trump"),
|
|
1259
|
+
DocCfg(id='016599', description=f"{PALM_BEACH_TSV} consumption (water?)"),
|
|
1260
|
+
DocCfg(id='016600', description=f"{PALM_BEACH_TSV} consumption (water?)"),
|
|
1261
|
+
DocCfg(id='016601', description=f"{PALM_BEACH_TSV} consumption (water?)"),
|
|
1262
|
+
DocCfg(id='016694', description=f"{PALM_BEACH_TSV} consumption (water?)"),
|
|
1263
|
+
DocCfg(id='016552', description=f"{PALM_BEACH_TSV} info"),
|
|
1264
|
+
DocCfg(id='016698', description=f"{PALM_BEACH_TSV} info (broken?)"),
|
|
1265
|
+
DocCfg(id='016696', description=f"{PALM_BEACH_TSV} info (water quality?"),
|
|
1266
|
+
DocCfg(id='016636', description=f"{PALM_BEACH_WATER_COMMITTEE} Meeting on January 29, 2009"),
|
|
1267
|
+
DocCfg(id='022417', description=f"Park Partners NYC letter to partners in real estate project with architectural plans"),
|
|
1268
|
+
DocCfg(
|
|
1293
1269
|
id='018727',
|
|
1294
1270
|
description=f"{VIRGIN_ISLANDS} property deal pitch deck, building will be leased to the U.S. govt GSA",
|
|
1295
1271
|
date='2014-06-01',
|
|
1296
1272
|
),
|
|
1273
|
+
]
|
|
1297
1274
|
|
|
1298
|
-
|
|
1299
|
-
|
|
1300
|
-
|
|
1301
|
-
|
|
1302
|
-
|
|
1303
|
-
|
|
1304
|
-
|
|
1305
|
-
|
|
1306
|
-
description=f'{REPUTATION_MGMT} {OSBORNE_LLP} reputation repair proposal (cites Michael Milken)',
|
|
1307
|
-
date='2011-06-14',
|
|
1308
|
-
),
|
|
1275
|
+
OTHER_FILES_REPUTATION = [
|
|
1276
|
+
DocCfg(id='030426', author=OSBORNE_LLP, description=f"reputation repair proposal (cites Michael Milken)", date='2011-06-14'),
|
|
1277
|
+
DocCfg(id='026582', description=f"Epstein's internet search results at start of reputation repair campaign, maybe from {OSBORNE_LLP}"),
|
|
1278
|
+
DocCfg(id='030573', description=f"Epstein's unflattering Google search results, maybe screenshot by {AL_SECKEL} or {OSBORNE_LLP}"),
|
|
1279
|
+
DocCfg(id='030875', description=f"Epstein's Wikipedia page"),
|
|
1280
|
+
DocCfg(id='026583', description=f"Google search results for '{JEFFREY_EPSTEIN}' with analysis ({OSBORNE_LLP}?)"),
|
|
1281
|
+
DocCfg(id='029350', description=f"Microsoft Bing search results for Epstein with sex offender at top, maybe from {TYLER_SHEARS}?"),
|
|
1282
|
+
]
|
|
1309
1283
|
|
|
1310
|
-
|
|
1311
|
-
|
|
1312
|
-
|
|
1313
|
-
|
|
1314
|
-
|
|
1315
|
-
|
|
1316
|
-
|
|
1317
|
-
|
|
1318
|
-
|
|
1319
|
-
|
|
1320
|
-
|
|
1321
|
-
|
|
1322
|
-
|
|
1323
|
-
|
|
1324
|
-
|
|
1284
|
+
# social media / InsightsPod
|
|
1285
|
+
OTHER_FILES_SOCIAL = [
|
|
1286
|
+
DocCfg(id='028815', author=ZUBAIR_AND_ANYA, description=f"{INSIGHTS_POD} business plan", date='2016-08-20'),
|
|
1287
|
+
DocCfg(id='011170', author=ZUBAIR_AND_ANYA, description=f'{INSIGHTS_POD} collected tweets about #Brexit', date='2016-06-23'),
|
|
1288
|
+
DocCfg(id='032324', author=ZUBAIR_AND_ANYA, description=f"{INSIGHTS_POD} election social media trend analysis", date='2016-11-05'),
|
|
1289
|
+
DocCfg(id='032281', author=ZUBAIR_AND_ANYA, description=f"{INSIGHTS_POD} forecasting election for Trump", date='2016-10-25'),
|
|
1290
|
+
DocCfg(id='028988', author=ZUBAIR_AND_ANYA, description=f"{INSIGHTS_POD} pitch deck", date='2016-08-20'),
|
|
1291
|
+
DocCfg(id='026627', author=ZUBAIR_AND_ANYA, description=f"{INSIGHTS_POD} report on the presidential debate"),
|
|
1292
|
+
DocCfg(id='023050', author=ALAN_DERSHOWITZ, description=DERSH_GIUFFRE_TWEET),
|
|
1293
|
+
DocCfg(id='017787', author=ALAN_DERSHOWITZ, description=DERSH_GIUFFRE_TWEET),
|
|
1294
|
+
DocCfg(id='033433', author=ALAN_DERSHOWITZ, description=f"{DERSH_GIUFFRE_TWEET} / David Boies", date='2019-03-02'),
|
|
1295
|
+
DocCfg(id='033432', author=ALAN_DERSHOWITZ, description=f"{DERSH_GIUFFRE_TWEET} / David Boies", date='2019-05-02'),
|
|
1296
|
+
DocCfg(id='022213', description=f"{SCREENSHOT} Facebook group called 'Shit Pilots Say' disparaging a 'global girl'"),
|
|
1297
|
+
DocCfg(id='030884', description=f"{TWEET} by Ed Krassenstein"),
|
|
1298
|
+
DocCfg(id='031546', description=f"{TWEET}s by Donald Trump about Russian collusion", date='2018-01-06'),
|
|
1299
|
+
DocCfg(id='033236', description=f'{TWEET}s about Ivanka Trump in Arabic', date='2017-05-20'),
|
|
1300
|
+
]
|
|
1325
1301
|
|
|
1326
|
-
|
|
1327
|
-
|
|
1328
|
-
|
|
1329
|
-
|
|
1330
|
-
|
|
1331
|
-
|
|
1302
|
+
OTHER_FILES_POLITICS = [
|
|
1303
|
+
DocCfg(id='029918', author=DIANA_DEGETTE_CAMPAIGN, description=f"bio", date='2012-01-01'),
|
|
1304
|
+
DocCfg(id='031184', author=DIANA_DEGETTE_CAMPAIGN, description=f"fundraiser invitation"),
|
|
1305
|
+
DocCfg(id='026851', author='Politifact', description=f"lying politicians chart", date='2016-07-26'),
|
|
1306
|
+
DocCfg(id='026827', author='Scowcroft Group', description=f'report on ISIS', date='2015-11-14'),
|
|
1307
|
+
DocCfg(id='024294', author=STACEY_PLASKETT, description=f"campaign flier", date='2016-10-01'),
|
|
1308
|
+
DocCfg(
|
|
1332
1309
|
id='023133',
|
|
1333
|
-
|
|
1310
|
+
author=f"{TERJE_ROD_LARSEN}, Nur Laiq, Fabrice Aidan",
|
|
1311
|
+
description=f'The Search for Peace in the Arab-Israeli Conflict',
|
|
1334
1312
|
date='2019-12-09',
|
|
1335
1313
|
),
|
|
1336
|
-
|
|
1337
|
-
|
|
1314
|
+
DocCfg(
|
|
1315
|
+
id='025849',
|
|
1316
|
+
author='US Office of Government Information Services',
|
|
1317
|
+
description=f"Building a Bridge Between FOIA Requesters & Agencies",
|
|
1318
|
+
),
|
|
1319
|
+
DocCfg(id='031670', description=f"letter from General Mike Flynn's lawyers to senators Mark Warner & Richard Burr about subpoena"),
|
|
1320
|
+
DocCfg(
|
|
1338
1321
|
id='029357',
|
|
1339
1322
|
description=f"text about Israel's challenges going into 2015, feels like it was extracted from a book",
|
|
1340
1323
|
date='2015-01-15', # TODO: this is just a guess
|
|
1341
1324
|
duplicate_ids=['028887'],
|
|
1342
1325
|
),
|
|
1343
|
-
|
|
1344
|
-
|
|
1326
|
+
DocCfg(id='010617', description=TRUMP_DISCLOSURES, date='2017-01-20'),
|
|
1327
|
+
DocCfg(id='016699', description=TRUMP_DISCLOSURES, date='2017-01-20'),
|
|
1328
|
+
]
|
|
1345
1329
|
|
|
1346
|
-
|
|
1347
|
-
|
|
1348
|
-
|
|
1349
|
-
|
|
1350
|
-
|
|
1351
|
-
|
|
1352
|
-
|
|
1353
|
-
|
|
1354
|
-
|
|
1355
|
-
|
|
1330
|
+
OTHER_FILES_ACADEMIA = [
|
|
1331
|
+
DocCfg(id='024256', author=JOI_ITO, description=f"Internet & Society: The Technologies and Politics of Control"),
|
|
1332
|
+
DocCfg(id='027004', author=JOSCHA_BACH, description=f"The Computational Structure of Mental Representation", date='2013-02-26'),
|
|
1333
|
+
DocCfg(
|
|
1334
|
+
id='014697',
|
|
1335
|
+
author=LAWRENCE_KRAUSS_ASU_ORIGINS,
|
|
1336
|
+
description=f'report: "Challenges of AI: Envisioning and Addressing Adverse Outcomes"',
|
|
1337
|
+
duplicate_ids=['011284']
|
|
1338
|
+
),
|
|
1339
|
+
DocCfg(id='015501', author=f"{MOSHE_HOFFMAN}, Erez Yoeli, and Carlos David Navarrete", description=f"Game Theory and Morality"),
|
|
1340
|
+
DocCfg(id='025143', author=ROBERT_TRIVERS, description=f"Africa, Parasites, Intelligence", date='2018-06-25'),
|
|
1341
|
+
DocCfg(id='029155', author=ROBERT_TRIVERS, description=f'response sent to the Gruterites ({GORDON_GETTY} fans)', date='2018-03-19'),
|
|
1342
|
+
DocCfg(
|
|
1356
1343
|
id='033323',
|
|
1357
1344
|
author=f"{ROBERT_TRIVERS} and Nathan H. Lents",
|
|
1358
|
-
description=f"
|
|
1345
|
+
description=f"'Does Trump Fit the Evolutionary Role of Narcissistic Sociopath?' (draft)",
|
|
1359
1346
|
date='2018-12-07',
|
|
1360
1347
|
),
|
|
1361
|
-
|
|
1362
|
-
|
|
1363
|
-
|
|
1364
|
-
|
|
1365
|
-
|
|
1366
|
-
|
|
1367
|
-
|
|
1368
|
-
|
|
1369
|
-
|
|
1370
|
-
|
|
1371
|
-
|
|
1372
|
-
|
|
1373
|
-
|
|
1374
|
-
|
|
1375
|
-
|
|
1376
|
-
|
|
1348
|
+
DocCfg(
|
|
1349
|
+
id='026521',
|
|
1350
|
+
author=f"{MARTIN_NOWAK}, Erez Yoeli, and {MOSHE_HOFFMAN}",
|
|
1351
|
+
description=f"Cooperating Without Looking: Game Theory Model of Trust and Reciprocal Cooperation"
|
|
1352
|
+
),
|
|
1353
|
+
DocCfg(id='023416', description=HARVARD_POETRY),
|
|
1354
|
+
DocCfg(id='023435', description=HARVARD_POETRY),
|
|
1355
|
+
DocCfg(id='023450', description=HARVARD_POETRY),
|
|
1356
|
+
DocCfg(id='023452', description=HARVARD_POETRY),
|
|
1357
|
+
DocCfg(id='029517', description=HARVARD_POETRY),
|
|
1358
|
+
DocCfg(id='029543', description=HARVARD_POETRY),
|
|
1359
|
+
DocCfg(id='029589', description=HARVARD_POETRY),
|
|
1360
|
+
DocCfg(id='029603', description=HARVARD_POETRY),
|
|
1361
|
+
DocCfg(id='029298', description=HARVARD_POETRY),
|
|
1362
|
+
DocCfg(id='029592', description=HARVARD_POETRY),
|
|
1363
|
+
DocCfg(id='019396', description=f'{HARVARD} Economics 1545 Professor Kenneth Rogoff syllabus'),
|
|
1364
|
+
DocCfg(id='022445', description=f"Inference: International Review of Science Feedback & Comments", date='2018-11-01'),
|
|
1365
|
+
DocCfg(id='029355', description=f'{SCREENSHOT} quote in book about {LARRY_SUMMERS}', duplicate_ids=['029356'], dupe_type='quoted'), # 029356 is zoomed in corner
|
|
1366
|
+
]
|
|
1367
|
+
|
|
1368
|
+
OTHER_FILES_SPEECH = [
|
|
1369
|
+
DocCfg(id='027009', author=EHUD_BARAK, description=f"speech to AIPAC", date='2013-03-03'),
|
|
1370
|
+
DocCfg(id='026856', author='Kevin Rudd', description=f"speech 'Xi Jinping, China And The Global Order'", date='2018-06-26'),
|
|
1371
|
+
DocCfg(id='026731', author='Lord Martin Rees', description=f"speech at first inaugural Cornell Carl Sagan Lecture"),
|
|
1372
|
+
]
|
|
1377
1373
|
|
|
1378
|
-
|
|
1379
|
-
|
|
1380
|
-
|
|
1381
|
-
|
|
1382
|
-
FileCfg(
|
|
1374
|
+
# resumes and application letters
|
|
1375
|
+
OTHER_FILES_RESUMES = [
|
|
1376
|
+
DocCfg(id='022367', author='Jack J Grynberg', description=RESUME_OF, date='2014-07-01'),
|
|
1377
|
+
DocCfg(
|
|
1383
1378
|
id='029302',
|
|
1384
|
-
|
|
1379
|
+
author=MICHAEL_J_BOCCIO,
|
|
1380
|
+
description=f"{RESUME_OF} (former lawyer at the {TRUMP_ORG})",
|
|
1385
1381
|
date='2011-08-07',
|
|
1386
1382
|
),
|
|
1387
|
-
|
|
1388
|
-
|
|
1389
|
-
|
|
1383
|
+
DocCfg(id='029102', author=NERIO_ALESSANDRI, description=HBS_APPLICATION),
|
|
1384
|
+
DocCfg(id='029104', author=NERIO_ALESSANDRI, description=HBS_APPLICATION),
|
|
1385
|
+
DocCfg(id='015671', author='Robin Solomon', description=RESUME_OF, date='2015-06-02'), # She left Mount Sinai at some point in 2015,
|
|
1386
|
+
DocCfg(id='015672', author='Robin Solomon', description=RESUME_OF, date='2015-06-02'), # She left Mount Sinai at some point in 2015,
|
|
1387
|
+
DocCfg(id='029623', description=f'bio of Kathleen Harrington, Founding Partner, C/H Global Strategies'),
|
|
1388
|
+
]
|
|
1390
1389
|
|
|
1391
|
-
|
|
1392
|
-
|
|
1393
|
-
|
|
1394
|
-
|
|
1390
|
+
OTHER_FILES_ARTS = [
|
|
1391
|
+
DocCfg(id='018703', author=ANDRES_SERRANO, description=f"artist statement about Trump objects"),
|
|
1392
|
+
DocCfg(id='023438', author=BROCKMAN_INC, description=f"announcement of auction of 'Noise' by Daniel Kahneman, Olivier Sibony, and Cass Sunstein"),
|
|
1393
|
+
DocCfg(id='030769', author='Independent Filmmaker Project (IFP)', description=f"2017 Gotham Awards invitation"),
|
|
1394
|
+
DocCfg(id='028281', description=f'art show flier for "The House Of The Nobleman" curated by Wolfe Von Lenkiewicz & Victoria Golembiovskaya'),
|
|
1395
|
+
DocCfg(
|
|
1395
1396
|
id='025205',
|
|
1396
|
-
|
|
1397
|
+
author='Mercury Films',
|
|
1398
|
+
description=f'partner profiles of Jennifer Baichwal, Nicholas de Pencier, Kermit Blackwood, Travis Rummel',
|
|
1397
1399
|
date='2010-02-01',
|
|
1398
1400
|
duplicate_ids=['025210']
|
|
1399
1401
|
),
|
|
1402
|
+
]
|
|
1400
1403
|
|
|
1401
|
-
|
|
1402
|
-
|
|
1403
|
-
|
|
1404
|
-
|
|
1404
|
+
OTHER_FILES_MISC = [
|
|
1405
|
+
DocCfg(id='022780', category=FLIGHT_LOGS),
|
|
1406
|
+
DocCfg(id='022816', category=FLIGHT_LOGS),
|
|
1407
|
+
DocCfg(
|
|
1405
1408
|
id='025147',
|
|
1406
|
-
|
|
1409
|
+
author=BROCKMAN_INC,
|
|
1410
|
+
description=f'hot list Frankfurt Book Fair (includes article about Silk Road/Ross Ulbricht)',
|
|
1407
1411
|
date='2016-10-23',
|
|
1408
1412
|
),
|
|
1409
|
-
|
|
1410
|
-
|
|
1411
|
-
|
|
1412
|
-
|
|
1413
|
-
|
|
1414
|
-
|
|
1415
|
-
|
|
1416
|
-
|
|
1417
|
-
|
|
1418
|
-
|
|
1419
|
-
|
|
1420
|
-
|
|
1413
|
+
DocCfg(id='022494', author='DOJ', description=f'Foreign Corrupt Practices Act (FCPA) Resource Guide'),
|
|
1414
|
+
DocCfg(id='023096', author=EPSTEIN_FOUNDATION, description=f'blog post', date='2012-11-15'),
|
|
1415
|
+
DocCfg(id='029326', author=EPSTEIN_FOUNDATION, description=f'{PRESS_RELEASE}', date='2013-02-15'),
|
|
1416
|
+
DocCfg(id='026565', author=EPSTEIN_FOUNDATION, description=f'{PRESS_RELEASE}, maybe a draft of 029326', date='2013-02-15'),
|
|
1417
|
+
DocCfg(id='027071', author=FEMALE_HEALTH_COMPANY, description=f"brochure requesting donations for female condoms in Uganda"),
|
|
1418
|
+
DocCfg(id='027074', author=FEMALE_HEALTH_COMPANY, description=f"pitch deck (USAID was a customer)"),
|
|
1419
|
+
DocCfg(id='032735', author=GORDON_GETTY, description=f"on Trump", date='2018-03-20'), # Dated based on concurrent emails from Getty
|
|
1420
|
+
DocCfg(id='025540', author=JEFFREY_EPSTEIN, description=f"rough draft of Epstein's side of the story?"),
|
|
1421
|
+
DocCfg(id='018224', author=LAWRENCE_KRAUSS, description=f"Skype conversation log"),
|
|
1422
|
+
DocCfg(id='026634', author='Michael Carrier', description=f"comments about an Apollo linked hedge fund 'DE Fund VIII'"),
|
|
1423
|
+
DocCfg(id='031425', author=SCOTT_J_LINK, description=f'completely redacted email from'),
|
|
1424
|
+
DocCfg(id='020447', author='Working Group on Chinese Influence Activities in the U.S.', description=f'Promoting Constructive Vigilance'),
|
|
1425
|
+
DocCfg(id='031743', description=f'a few pages describing the internet as a "New Nation State" (Network State?)'),
|
|
1426
|
+
DocCfg(id='012718', description=f"{CVRA} congressional record", date='2011-06-17'),
|
|
1427
|
+
DocCfg(id='024117', description=f"FAQ about anti-money laundering (AML) and terrorist financing (CFT) law in the U.S."),
|
|
1428
|
+
DocCfg(id='019448', description=f"Haitian business investment proposal called Jacmel"),
|
|
1429
|
+
DocCfg(id='023644', description=f"interview with Mohammed bin Salman", date='2016-04-25'),
|
|
1430
|
+
DocCfg(
|
|
1421
1431
|
id='030142',
|
|
1422
|
-
description=f"{JASTA} (Justice Against Sponsors of Terrorism Act) doc that's mostly empty, references suit against Saudi f. {KATHRYN_RUEMMLER} & {KEN_STARR}",
|
|
1423
1432
|
date='2016-09-01',
|
|
1433
|
+
description=f"{JASTA} (Justice Against Sponsors of Terrorism Act) doc that's mostly empty, references suit against Saudi f. {KATHRYN_RUEMMLER} & {KEN_STARR}",
|
|
1424
1434
|
),
|
|
1425
|
-
|
|
1426
|
-
|
|
1427
|
-
|
|
1428
|
-
|
|
1429
|
-
|
|
1430
|
-
|
|
1435
|
+
DocCfg(
|
|
1436
|
+
id='033338',
|
|
1437
|
+
date='2000-06-07',
|
|
1438
|
+
description=f"{PRESS_RELEASE} announcing Donald Trump & {NICHOLAS_RIBIS} ended their working relationship at Trump's casino",
|
|
1439
|
+
),
|
|
1440
|
+
DocCfg(id='029328', description=f"Rafanelli Events promotional deck"),
|
|
1441
|
+
DocCfg(id='033434', description=f"{SCREENSHOT} iPhone chat labeled 'Edwards' at the top"),
|
|
1442
|
+
DocCfg(id='029475', description=f'{VIRGIN_ISLANDS} Twin City Mobile Integrated Health Services (TCMIH) proposal/request for donation'),
|
|
1443
|
+
DocCfg(id='029448', description=f"weird short essay titled 'President Obama and Self-Deception'"),
|
|
1444
|
+
]
|
|
1431
1445
|
|
|
1432
|
-
|
|
1433
|
-
|
|
1434
|
-
|
|
1435
|
-
|
|
1436
|
-
|
|
1437
|
-
|
|
1438
|
-
|
|
1439
|
-
|
|
1440
|
-
|
|
1441
|
-
|
|
1446
|
+
OTHER_FILES_JUNK = [
|
|
1447
|
+
DocCfg(id='026678', description=f"fragment of image metadata {QUESTION_MARKS}", date='2017-06-29'),
|
|
1448
|
+
DocCfg(id='022986', description=f"fragment of a screenshot {QUESTION_MARKS}"),
|
|
1449
|
+
DocCfg(id='033478', description=f'{MEME} Kim Jong Un reading {FIRE_AND_FURY}', date='2018-01-05', duplicate_ids=['032713']),
|
|
1450
|
+
DocCfg(id='033177', description=f"{MEME} Trump with text 'WOULD YOU TRUST THIS MAN WITH YOUR DAUGHTER?'"),
|
|
1451
|
+
DocCfg(id='029564', description=OBAMA_JOKE, date='2013-07-26'),
|
|
1452
|
+
DocCfg(id='029353', description=OBAMA_JOKE, date='2013-07-26'),
|
|
1453
|
+
DocCfg(id='029352', description=OBAMA_JOKE, date='2013-07-26'),
|
|
1454
|
+
DocCfg(id='029351', description=OBAMA_JOKE, date='2013-07-26'),
|
|
1455
|
+
DocCfg(id='029354', description=OBAMA_JOKE, date='2013-07-26'),
|
|
1442
1456
|
]
|
|
1443
1457
|
|
|
1444
|
-
|
|
1458
|
+
OTHER_FILES_CATEGORIES = [
|
|
1459
|
+
ACADEMIA,
|
|
1460
|
+
f"{ARTICLE}s",
|
|
1461
|
+
ARTS,
|
|
1462
|
+
f"{BOOK}s",
|
|
1463
|
+
f"{CONFERENCE}s",
|
|
1464
|
+
FINANCE,
|
|
1465
|
+
JUNK,
|
|
1466
|
+
LEGAL,
|
|
1467
|
+
'LETTERS',
|
|
1468
|
+
'MISC',
|
|
1469
|
+
POLITICS,
|
|
1470
|
+
PROPERTY,
|
|
1471
|
+
REPUTATION,
|
|
1472
|
+
'RESUMES',
|
|
1473
|
+
SOCIAL,
|
|
1474
|
+
SPEECH,
|
|
1475
|
+
]
|
|
1476
|
+
|
|
1477
|
+
OTHER_FILES_CONFIG = []
|
|
1478
|
+
|
|
1479
|
+
# Collect all OTHER_FILES_ configs into OTHER_FILES_CONFIG
|
|
1480
|
+
for category in OTHER_FILES_CATEGORIES:
|
|
1481
|
+
configs = locals()[f"OTHER_FILES_{category.upper()}"]
|
|
1482
|
+
OTHER_FILES_CONFIG.extend(configs)
|
|
1483
|
+
category = category.lower()
|
|
1484
|
+
category = category if category in [ARTS, POLITICS] else category.removesuffix('s')
|
|
1485
|
+
|
|
1486
|
+
# Inject category field
|
|
1487
|
+
for cfg in configs:
|
|
1488
|
+
cfg.category = cfg.category or category
|
|
1489
|
+
|
|
1445
1490
|
ALL_CONFIGS = TEXTS_CONFIG + EMAILS_CONFIG + OTHER_FILES_CONFIG
|
|
1446
|
-
ALL_FILE_CONFIGS: dict[str,
|
|
1491
|
+
ALL_FILE_CONFIGS: dict[str, DocCfg] = {}
|
|
1447
1492
|
|
|
1448
|
-
#
|
|
1493
|
+
# Create a dict keyed by file_id
|
|
1449
1494
|
for cfg in ALL_CONFIGS:
|
|
1450
1495
|
ALL_FILE_CONFIGS[cfg.id] = cfg
|
|
1451
1496
|
|
|
1497
|
+
# Add extra config objects for duplicate files that match the config of file they are duplicating
|
|
1452
1498
|
for dupe_cfg in cfg.duplicate_cfgs():
|
|
1453
1499
|
ALL_FILE_CONFIGS[dupe_cfg.id] = dupe_cfg
|
|
1454
1500
|
|
|
1455
1501
|
|
|
1456
|
-
#
|
|
1457
|
-
|
|
1458
|
-
|
|
1459
|
-
|
|
1460
|
-
|
|
1461
|
-
|
|
1462
|
-
|
|
1463
|
-
|
|
1464
|
-
|
|
1465
|
-
BOOK,
|
|
1466
|
-
'Boston Globe',
|
|
1467
|
-
'Brockman',
|
|
1468
|
-
CHALLENGES_OF_AI,
|
|
1469
|
-
CHINA_DAILY,
|
|
1470
|
-
CNN,
|
|
1471
|
-
'completely redacted',
|
|
1472
|
-
CVRA,
|
|
1473
|
-
DAILY_MAIL,
|
|
1474
|
-
DAILY_TELEGRAPH,
|
|
1475
|
-
DAVID_SCHOEN_CVRA_LEXIS_SEARCH[0:-12], # Because date at end :(
|
|
1476
|
-
DEEP_THINKING_HINT,
|
|
1477
|
-
DERSH_GIUFFRE_TWEET,
|
|
1478
|
-
DEUTSCHE_BANK,
|
|
1479
|
-
'Forbes',
|
|
1480
|
-
'fragment',
|
|
1481
|
-
'Frontlines',
|
|
1482
|
-
'Future Science',
|
|
1483
|
-
'Globe and Mail',
|
|
1484
|
-
GOLDMAN_REPORT,
|
|
1485
|
-
GORDON_GETTY,
|
|
1486
|
-
f"{HARVARD} Econ",
|
|
1487
|
-
HARVARD_POETRY,
|
|
1488
|
-
'Inference',
|
|
1489
|
-
'Invesco',
|
|
1490
|
-
JAMES_PATTERSON,
|
|
1491
|
-
JASTA,
|
|
1492
|
-
'JetGala',
|
|
1493
|
-
JOHN_BOLTON_PRESS_CLIPPING,
|
|
1494
|
-
'Journal of Criminal',
|
|
1495
|
-
JP_MORGAN,
|
|
1496
|
-
LA_TIMES,
|
|
1497
|
-
'Litigation Daily',
|
|
1498
|
-
'MarketWatch',
|
|
1499
|
-
MEME,
|
|
1500
|
-
'Morgan Stanley',
|
|
1501
|
-
NOBEL_CHARITABLE_TRUST,
|
|
1502
|
-
'Nautilus',
|
|
1503
|
-
'New Yorker',
|
|
1504
|
-
NIGHT_FLIGHT_HINT,
|
|
1505
|
-
NYT_ARTICLE,
|
|
1506
|
-
NYT_COLUMN,
|
|
1507
|
-
OBAMA_JOKE,
|
|
1508
|
-
PALM_BEACH_CODE_ENFORCEMENT,
|
|
1509
|
-
PALM_BEACH_DAILY_ARTICLE,
|
|
1510
|
-
PALM_BEACH_POST_ARTICLE,
|
|
1511
|
-
PALM_BEACH_TSV,
|
|
1512
|
-
PALM_BEACH_WATER_COMMITTEE,
|
|
1513
|
-
PAUL_KRASSNER,
|
|
1514
|
-
PEGGY_SIEGAL,
|
|
1515
|
-
'Politifact',
|
|
1516
|
-
'Rafanelli',
|
|
1517
|
-
REDACTED,
|
|
1518
|
-
ROBERT_LAWRENCE_KUHN,
|
|
1519
|
-
ROBERT_TRIVERS,
|
|
1520
|
-
'S&P',
|
|
1521
|
-
'Sadis',
|
|
1522
|
-
'SCMP',
|
|
1523
|
-
'SciencExpress',
|
|
1524
|
-
'Scowcroft',
|
|
1525
|
-
SHIMON_POST_ARTICLE,
|
|
1526
|
-
SINGLE_PAGE,
|
|
1527
|
-
STACEY_PLASKETT,
|
|
1528
|
-
TEXT_OF_US_LAW,
|
|
1529
|
-
TRANSLATION,
|
|
1530
|
-
TWEET,
|
|
1531
|
-
THE_REAL_DEAL_ARTICLE,
|
|
1532
|
-
TRUMP_DISCLOSURES,
|
|
1533
|
-
UBS_CIO_REPORT,
|
|
1534
|
-
'U.S. News',
|
|
1535
|
-
'US Office',
|
|
1536
|
-
'USA Inc',
|
|
1537
|
-
'Vanity Fair',
|
|
1538
|
-
VI_DAILY_NEWS_ARTICLE,
|
|
1539
|
-
WAPO,
|
|
1540
|
-
]
|
|
1502
|
+
# Email related regexes (have to be here for circular dependencies reasons)
|
|
1503
|
+
FORWARDED_LINE_PATTERN = r"-+ ?(Forwarded|Original)\s*Message ?-*|Begin forwarded message:?"
|
|
1504
|
+
REPLY_LINE_IN_A_MSG_PATTERN = r"In a message dated \d+/\d+/\d+.*writes:"
|
|
1505
|
+
REPLY_LINE_ENDING_PATTERN = r"[_ \n](AM|PM|[<_]|wrote:?)"
|
|
1506
|
+
REPLY_LINE_ON_NUMERIC_DATE_PATTERN = fr"On \d+/\d+/\d+[, ].*{REPLY_LINE_ENDING_PATTERN}"
|
|
1507
|
+
REPLY_LINE_ON_DATE_PATTERN = fr"^On (\d+ )?((Mon|Tues?|Wed(nes)?|Thu(rs)?|Fri|Sat(ur)?|Sun)(day)?|(Jan|Feb|Mar|Apr|May|Jun|Jul|Aug|Sep|Oct|Nov|Dec)\w*)[, ].*{REPLY_LINE_ENDING_PATTERN}"
|
|
1508
|
+
REPLY_LINE_PATTERN = rf"({REPLY_LINE_IN_A_MSG_PATTERN}|{REPLY_LINE_ON_NUMERIC_DATE_PATTERN}|{REPLY_LINE_ON_DATE_PATTERN}|{FORWARDED_LINE_PATTERN})"
|
|
1509
|
+
REPLY_REGEX = re.compile(REPLY_LINE_PATTERN, re.IGNORECASE | re.MULTILINE)
|
|
1510
|
+
SENT_FROM_REGEX = re.compile(r'^(?:(Please forgive|Sorry for all the) typos.{1,4})?(Sent (from|via).*(and string|AT&T|Droid|iPad|Phone|Mail|BlackBerry(.*(smartphone|device|Handheld|AT&T|T- ?Mobile))?)\.?)', re.M | re.I)
|
|
1541
1511
|
|
|
1542
1512
|
|
|
1543
1513
|
# Error checking.
|
|
1514
|
+
if len(OTHER_FILES_CONFIG) != 438:
|
|
1515
|
+
logger.warning(f"Only {len(OTHER_FILES_CONFIG)} configured other files!")
|
|
1516
|
+
|
|
1544
1517
|
encountered_file_ids = set()
|
|
1545
1518
|
|
|
1546
1519
|
for cfg in ALL_CONFIGS:
|