diff --git a/juriscraper/pacer/email.py b/juriscraper/pacer/email.py index f73b5476d..808ca72c3 100644 --- a/juriscraper/pacer/email.py +++ b/juriscraper/pacer/email.py @@ -534,116 +534,45 @@ def _get_docket_entries( return [] def _parse_bankruptcy_short_description(self, subject: str) -> str: - """Parse the short description of a bankruptcy case from the email - subject. Subjects for bankruptcy varies a lot from court to court. - This function supports parsing the short description for courts with - known examples. + """Parse the short description of a bankruptcy case from the email subject + + The subject contains: the docket number, the case name, the short description + and special characters. The presence and order of these elements varies from + court to court. The short description that we parse out should match the + "Description" on the "History/Document" report on PACER + + A special case are multi-docket NEFs, of which we have only seen + 2-docket NEFs. These are labelled as "_multi_" on the example files, and we + have only seen "Adversary Cases", so far. The subject will use one + of the case names and one of the docket numbers, and then follow + the general rules :param subject: The email subject string. :return: The parsed short description. """ - - # See paeb_3.txt for a test of multi docket NEF - # So far, we have only seen 2-docket NEF - is_multidocket = len(self.docket_numbers) == 2 - if len(self.docket_numbers) > 1 and self.court_id != "njb": - logger.error( - "Not parsing description for Bankruptcy Multi Docket NEF for court '%s'", - self.court_id, - extra={ - "fingerprint": [ - f"{self.court_id}-not-parsing-multi-docket-short-description" - ] - }, - ) - return "" + if "Close Adversary Case" in subject: + return "Close Adversary Case" short_description = "" - docket_number = self.docket_numbers[0] - case_name = self.case_names[0] - - if is_multidocket: - # Docket number / case name from one or both of the 2 cases - # may be used in the subject string - if self.docket_numbers[1] in subject: - docket_number = self.docket_numbers[1] - if self.case_names[1] in subject: - case_name = self.case_names[1] - - if self.court_id in [ - "cacb", - "ctb", - "cob", - "ianb", - "nyeb", - "txnb", - "okeb", - ]: - # In: 6:22-bk-13643-SY Request for courtesy Notice of Electronic Filing (NEF) - # Out: Request for courtesy Notice of Electronic Filing (NEF) - short_description = subject.split(docket_number)[-1] - - # Remove docket number traces "-AAA" - regex = r"^-.*?\s" - short_description = re.sub(regex, "", short_description) - elif self.court_id in ["njb", "dcb", "vaeb", "paeb", "mdb", "arwb"]: - # In: Ch-11 19-27439-MBK Determination of Adjournment Request - Hollister Construc - # Out: Determination of Adjournment Request - # In Ch-13 1:24-bk-70534 Meeting of Creditors - Second Non-Appearance; Michael Clayton Lowry - # Out: Meeting of Creditors - Second Non-Appearance - short_description = subject.split(docket_number)[-1] - # Remove docket number traces "-AAA" - # Remove CH after docket and BK after short description for dcb - regex = r"^-.*?\s|C[Hh][\s\d]+|[ (]?B[Kk]( Other)?[) ]?" - short_description = re.sub(regex, "", short_description) - separator = ";" if self.court_id == "arwb" else "-" - short_description = short_description.rsplit(separator, 1)[0] - elif self.court_id == "nysb": - # In: 22-22507-cgm Ch13 Affidavit Re: Gerasimos Stefanitsis - # Out: Affidavit - short_description = subject.split(case_name)[0] - short_description = short_description.replace("Re:", "") - short_description = short_description.split(docket_number)[-1] - - # Remove strings starting with "Ch" followed by a number - regex = r"\bCh\d+\b" - short_description = re.sub(regex, "", short_description) - - # Remove docket number traces "-AAA" - regex = r"^-.*?\s" - short_description = re.sub(regex, "", short_description) - elif self.court_id in ["pawb", "ndb", "deb", "pamb", "nhb"]: - # In: Ch-7 22-20823-GLT U LOCK INC Reply - # Out: Reply - if case_name in subject: - short_description = subject.split(case_name)[-1] - elif case_name[:18] in subject: - # See deb_2.txt, pamb_1 and pamb_3 for examples - short_description = subject.split(case_name[:18])[-1] - elif ( - " and " in case_name and case_name.split(" and ")[0] in subject - ): - # See pamb_2.txt - short_description = subject.split(case_name.split(" and ")[0])[ - -1 - ] - elif self.court_id in [ - "tnmb", - ]: - # In: Docket Order - Continue Hearing (Auto) Ch 13 Jeffery Wayne Lovell and Tiffany Nicole Lovell 1:24-bk-01377 - # Out: Docket Order - Continue Hearing (Auto) Ch 13 - if case_name in subject: - short_description = subject.split(case_name)[0] - else: - logger.error( - "Short description has no parsing for bankruptcy court '%s'", - self.court_id, - extra={ - "fingerprint": [ - f"{self.court_id}-not-parsing-short-description" - ] - }, - ) + for part in self.docket_numbers + self.case_names: + subject = subject.replace(part, " ") + + # Sometimes the full case name is not used in the `subject` + # Some courts use a 18 character limit + # See deb_2.txt, pamb_1 and pamb_3 for examples + for case_name in self.case_names: + subject = subject.replace(case_name[:18].strip(), " ") + subject = subject.replace(case_name.split(" and ")[0], " ") + + # Deletes: + # - extra docket number 'components' + # - Chapter component + # - "NEF: " placehodler + regex_cleanup = r"(\-[A-Z]{2,})|(\-[a-z]{2,})|(C[Hh](apter)?[- ]?(13|7|9|11))|(NEF:? )" + subject = re.sub(regex_cleanup, " ", subject) + subject = subject.strip(" -;:, ") + # some courts use "Re: {case name}" + short_description = re.sub("( Re$)|(^Re:? )", "", subject) return short_description diff --git a/tests/examples/pacer/nef/s3/ctb_multi_1.json b/tests/examples/pacer/nef/s3/ctb_multi_1.json new file mode 100644 index 000000000..3c7f46106 --- /dev/null +++ b/tests/examples/pacer/nef/s3/ctb_multi_1.json @@ -0,0 +1,54 @@ +{ + "appellate": false, + "contains_attachments": true, + "court_id": "ctb", + "dockets": [ + { + "case_name": "Lotto v. U.S. BANK TRUST NATIONAL ASSOCIATION NOT IN ITS I", + "date_filed": null, + "docket_entries": [ + { + "date_filed": "2024-11-21", + "description": "Adversary case 24-03015. Complaint (21 (Validity, priority or extent of lien or other interest in property)) (81 (Subordination of claim or interest)) (91 (Declaratory judgment)) (02 (Other (e.g. other actions that would have been brought in state court if unrelated to bankruptcy))) (72 (Injunctive relief - other)) filed by Michael J.FirstName LastName on behalf of Michael Henry Lotto against U.S. BANK TRUST NATIONAL ASSOCIATION NOT IN ITS INDIVIDUAL CAPACITY BUT SOLELY AS OWNER TRUSTEE FOR RCF 2 ACQUISITION TRUST, Selene Finance LP, Discover Bank. Receipt NotDue Fee Amount $350. Fee Not Due. (Attachments: (1) Form B1040 - Adversary Proceeding Cover Sheet (2) Exhibit Exhibits A through F) (Habib, Michael)", + "document_number": "1", + "document_url": "https://ecf.ctb.uscourts.gov/doc1/040015374935?pdf_header=&magic_num=60081811&de_seq_num=3&caseid=315593", + "pacer_case_id": "315593", + "pacer_doc_id": "040015374935", + "pacer_magic_num": "60081811", + "pacer_seq_no": "3", + "short_description": "Complaint" + } + ], + "docket_number": "24-03015", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null + }, + { + "case_name": "Michael Henry Lotto", + "date_filed": null, + "docket_entries": [ + { + "date_filed": "2024-11-21", + "description": "Adversary case 24-03015. Complaint (21 (Validity, priority or extent of lien or other interest in property)) (81 (Subordination of claim or interest)) (91 (Declaratory judgment)) (02 (Other (e.g. other actions that would have been brought in state court if unrelated to bankruptcy))) (72 (Injunctive relief - other)) filed by Michael J.FirstName LastName on behalf of Michael Henry Lotto against U.S. BANK TRUST NATIONAL ASSOCIATION NOT IN ITS INDIVIDUAL CAPACITY BUT SOLELY AS OWNER TRUSTEE FOR RCF 2 ACQUISITION TRUST, Selene Finance LP, Discover Bank. Receipt NotDue Fee Amount $350. Fee Not Due. (Attachments: (1) Form B1040 - Adversary Proceeding Cover Sheet (2) Exhibit Exhibits A through F) (Habib, Michael)", + "document_number": "69", + "document_url": "https://ecf.ctb.uscourts.gov/doc1/040015374938?pdf_header=&magic_num=34452225&de_seq_num=185&caseid=314759", + "pacer_case_id": "314759", + "pacer_doc_id": "040015374938", + "pacer_magic_num": "34452225", + "pacer_seq_no": "185", + "short_description": "Complaint" + } + ], + "docket_number": "24-30774", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null + } + ], + "email_recipients": [] +} \ No newline at end of file diff --git a/tests/examples/pacer/nef/s3/ctb_multi_1.txt b/tests/examples/pacer/nef/s3/ctb_multi_1.txt new file mode 100644 index 000000000..efb2b9ae1 --- /dev/null +++ b/tests/examples/pacer/nef/s3/ctb_multi_1.txt @@ -0,0 +1,148 @@ +Return-Path: +Received: from icmecf101.gtwy.uscourts.gov (icmecf101.gtwy.uscourts.gov [199.107.16.200]) + by inbound-smtp.us-west-2.amazonaws.com with SMTP id k38b0456po5ke6jfm75uh4a3tc5aaur56gb8beo1 + for email@email.com; + Fri, 22 Nov 2024 03:05:50 +0000 (UTC) +X-SES-Spam-Verdict: PASS +X-SES-Virus-Verdict: PASS +Received-SPF: pass (spfCheck: domain of ctb.uscourts.gov designates 199.107.16.200 as permitted sender) client-ip=199.107.16.200; envelope-from=email@email.com.gov; helo=icmecf101.gtwy.uscourts.gov; +Authentication-Results: amazonses.com; + spf=pass (spfCheck: domain of ctb.uscourts.gov designates 199.107.16.200 as permitted sender) client-ip=199.107.16.200; envelope-from=email@email.com.gov; helo=icmecf101.gtwy.uscourts.gov; + dkim=pass header.i=@uscourts.gov; + dmarc=pass header.from=ctb.uscourts.gov; +X-SES-RECEIPT: AEFBQUFBQUFBQUFHbzBHb2lFUUZhNEtjTzlTZEpWWitjZFNzWkFqNWNndi82T1p0Y3dvdHhpb3pwNDhramc3Rkk2RVNsQVBMc1UrYWszOHIrVjh5d3dYelplUUVBclRvM1FxeTVtWkdlamViZTBUNXJveDZXN3dBNkkzVWZqdkVJQjZGaDJKOUd0REx5S3ZWMXFCSVMrRG04VkVuZ3lBQzlmRGVqMU5UalR0amNFQTVNZk42QkdDM2JpZit2VlBvZDl2eDcxLzF5Z1FBUUp0bHp6T08wS0Q4VzQxVGhId0pZWHVSQkt1ZjJac0E3WWp3V08xUlFuZnBxdURHZUdQcitScUMxZnY0VlArR0tkaFQ4V0RKYllrajc5ZE1SNUVXd05UZG91K2NtSFB2S0REN2h6YnF1YVFPWDBnYnBUbzJPUlBRdFdKV0tVVGs9 +X-SES-DKIM-SIGNATURE: a=rsa-sha256; q=dns/txt; b=HUFtJui1IUY87ie8tiJHTRRK+FFiLU41Ex4Wc36g/gMTxY8XocRYvdrAI/2iCFvbLlfB6jAxh72bGcKYuRHUHwvTV26g1bwp6IRcY+VdD53vpwo0MjSALnCDE/Tybiye6UqZh/rII3V6nJSHs17TfhDAe9PaYMQzkc8NjxQwGeI=; c=relaxed/simple; s=7v7vs6w47njt4pimodk5mmttbegzsi6n; d=amazonses.com; t=1732244751; v=1; bh=lVDjHVq6Iir6oq29ypBqSxqrAuDIhBJrNUzwKV8MRxM=; h=From:To:Cc:Bcc:Subject:Date:Message-ID:MIME-Version:Content-Type:X-SES-RECEIPT; +DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; + d=uscourts.gov; i=@uscourts.gov; l=8269; q=dns/txt; + s=law1e; t=1732244750; x=1763780750; + h=date:x-authentication-warning:mime-version:from:to: + message-id:subject:content-type:x-sbrs:x-remote-ip; + bh=lVDjHVq6Iir6oq29ypBqSxqrAuDIhBJrNUzwKV8MRxM=; + b=LP9HL2sv/m9Q22TTqUNfl1aspzjgOrrceR2DuznMvtXLJ7e+SD4gm0Uk + oZXTQliEvqXP6DxIOVLbPlrl185s1wuZfNp31dnw+b0/gxghr7o1DG5ZM + I1rQpwGczNWHkGuns8JGz6WyY8tAr64VWKMJPKGxV2KU3bi0S4z14l/h7 + Fm/XVfESk5eOKRcDaFGPKs4Efq8QyaEXG1eMDyR6jmC5ZPBZwsFDRiCIG + sugF11h7Hkk2wIhVrW3e7itaEWN2uW4OBosDnX7Hq873Rc8sa3HjMzbqE + LIWyi3u7s4L3Vn5iT2QhE+JguKFAQsiXmZNz/oIcLGjoYrLKpuRVEk/qt + A==; +X-SBRS: None +X-REMOTE-IP: 156.119.191.114 +Received: from ctbdb.ctb.gtwy.dcn ([156.119.191.114]) + by icmecf101.gtwy.uscourts.gov with ESMTP; 21 Nov 2024 22:05:50 -0500 +Received: from ctbdb.ctb.gtwy.dcn (localhost.localdomain [127.0.0.1]) + by ctbdb.ctb.gtwy.dcn (8.14.7/8.14.7) with ESMTP id 4AM355VE102900; + Thu, 21 Nov 2024 22:05:06 -0500 +Received: (from ecf_web@localhost) + by ctbdb.ctb.gtwy.dcn (8.14.7/8.14.4/Submit) id 4AM34g9q101211; + Thu, 21 Nov 2024 22:04:42 -0500 +Date: Thu, 21 Nov 2024 22:04:42 -0500 +X-Authentication-Warning: ctbdb.ctb.gtwy.dcn: ecf_web set sender to email@email.com.gov using -f +MIME-Version:1.0 +From:email@email.com.gov +To:email@email.com.gov +Message-Id: +Subject:24-03015 Complaint +Content-Type: text/html + +

***NOTE TO PUBLIC ACCESS USERS*** Judicial Conference of the United States policy permits attorneys of record and parties in a case (including pro se litigants) to receive one free electronic copy of all documents filed electronically, if receipt is required by law or directed by the filer. PACER access fees apply to all other users. To avoid later charges, download a copy of each document during this first viewing. However, if the referenced document is a transcript, the free copy and 30-page limit do not apply.

+ + + + +

U.S. Bankruptcy Court

+ +

District of Connecticut

+Notice of Electronic Filing +
+
+
The following transaction was received from LastName, FirstName entered on 11/21/2024 at 10:04 PM EST and filed on 11/21/2024 + +
+ + + + + + + + + +
Case Name: +Lotto v. U.S. BANK TRUST NATIONAL ASSOCIATION NOT IN ITS I
Case Number:24-03015
Document Number: +1 +
+ + + + + + + + + +
Case Name: +Michael Henry Lotto
Case Number:24-30774
Document Number: +69 +
+ + + + +

Docket Text: + +
+Adversary case 24-03015. Complaint (21 (Validity, priority or extent of lien or other interest in property)) (81 (Subordination of claim or interest)) (91 (Declaratory judgment)) (02 (Other (e.g. other actions that would have been brought in state court if unrelated to bankruptcy))) (72 (Injunctive relief - other)) filed by Michael J.FirstName LastName on behalf of Michael Henry Lotto against U.S. BANK TRUST NATIONAL ASSOCIATION NOT IN ITS INDIVIDUAL CAPACITY BUT SOLELY AS OWNER TRUSTEE FOR RCF 2 ACQUISITION TRUST, Selene Finance LP, Discover Bank. Receipt #NotDue Fee Amount $350. Fee Not Due. (Attachments: # (1) Form B1040 - Adversary Proceeding Cover Sheet # (2) Exhibit Exhibits A through F) (Habib, Michael) +

+ +

The following document(s) are associated with this transaction:

+ +Document description:Main Document +
Original filename:ADVERSARY COMPLAINT_LOTTO_11.21.2024_FINAL.pdf +
Electronic document Stamp: +
[STAMP bkecfStamp_ID=1018027260 [Date=11/21/2024] [FileNumber=15733343 +
-0] [b62f864b285b5925b6a685449c54a1290aef8c5e400bb26440e2a0575a4a09235 +
2ead8528545efe9e53c2c322ed9ae12e5aa6dae2105c2c6c4a9bf21e97720b1]] +
+Document description: Form B1040 - Adversary Proceeding Cover Sheet +
Original filename:C:\fakepath\Form B1040_Adversary Proceeding Cover Sheet_Lotto_11.21.2024.pdf +
Electronic document Stamp: +
[STAMP bkecfStamp_ID=1018027260 [Date=11/21/2024] [FileNumber=15733343 +
-1] [b55c2b39a3993a6d04513dca153f4991202323423d3677b74a1f52bccfd5a365e +
5ff1bd8c72d560a86d67171fe3c87a43f4f74aa6ec1b9d8183832136b32af6f]] +
+Document description:Exhibit Exhibits A through F +
Original filename:C:\fakepath\Exhibits to Complaint_Lotto_11.21.2024.pdf +
Electronic document Stamp: +
[STAMP bkecfStamp_ID=1018027260 [Date=11/21/2024] [FileNumber=15733343 +
-2] [7dcce3f46d124cfc6321d47356cdebe04b98d8f0f0616953f99bdfa65935b73e8 +
75d34a1a674d5a287e3cb72d407cbe19af48e448f2d8a793a18a29837cb1f07]] +
+Document description:Main Document +
Original filename:ADVERSARY COMPLAINT_LOTTO_11.21.2024_FINAL.pdf +
Electronic document Stamp: +
[STAMP bkecfStamp_ID=1018027260 [Date=11/21/2024] [FileNumber=15733344 +
-0] [18834182338b3a081bd17cadae69000cd91cda1538665246a3b41313f286209ac +
9b5e95b87340081b6aea9c62008b08cc285760420546c138093c3677332aa43]] +
+Document description: Form B1040 - Adversary Proceeding Cover Sheet +
Original filename:C:\fakepath\Form B1040_Adversary Proceeding Cover Sheet_Lotto_11.21.2024.pdf +
Electronic document Stamp: +
[STAMP bkecfStamp_ID=1018027260 [Date=11/21/2024] [FileNumber=15733344 +
-1] [75c34453ecbcc75d6b285a034223d5ea1bcd2ce26c4c7db30cf4e23500ee06694 +
a5a245a1d55f7a4f9e4873ebba4e17a78a5adb58ea2760cfecfbea1fcb99299]] +
+Document description:Exhibit Exhibits A through F +
Original filename:C:\fakepath\Exhibits to Complaint_Lotto_11.21.2024.pdf +
Electronic document Stamp: +
[STAMP bkecfStamp_ID=1018027260 [Date=11/21/2024] [FileNumber=15733344 +
-2] [196a1a6e452b7c81f82369f7c47c0bc62e99f22de7f3cbf784da443f1ee7a3512 +
96e043738965900435410ce007ae9c084b121feb5d585bcc2dad8bbf8d2bc5b]] +
+ +
+
+ + + + +
diff --git a/tests/examples/pacer/nef/s3/dcb_2.json b/tests/examples/pacer/nef/s3/dcb_2.json index de62ad963..c45f3355e 100644 --- a/tests/examples/pacer/nef/s3/dcb_2.json +++ b/tests/examples/pacer/nef/s3/dcb_2.json @@ -16,7 +16,7 @@ "pacer_doc_id": null, "pacer_magic_num": null, "pacer_seq_no": null, - "short_description": "Hearing Held" + "short_description": "Hearing Held (BK)" } ], "docket_number": "23-00285", diff --git a/tests/examples/pacer/nef/s3/deb_multi_1.json b/tests/examples/pacer/nef/s3/deb_multi_1.json new file mode 100644 index 000000000..50f190683 --- /dev/null +++ b/tests/examples/pacer/nef/s3/deb_multi_1.json @@ -0,0 +1,54 @@ +{ + "appellate": false, + "contains_attachments": true, + "court_id": "deb", + "dockets": [ + { + "case_name": "Franchise Group, Inc. v. Gale", + "date_filed": null, + "docket_entries": [ + { + "date_filed": "2024-11-27", + "description": "Adversary case 24-50237. Complaint by Franchise Group, Inc. against Brian Gale, Mark Noble, Terry Philippas, John Does 1-20. Fee Amount $350 (91 (Declaratory judgment)),(71 (Injunctive relief - reinstatement of stay)). (Morton, Edmon)", + "document_number": "1", + "document_url": "https://ecf.deb.uscourts.gov/doc1/042021961841?pdf_header=&magic_num=94822243&de_seq_num=3&caseid=194952", + "pacer_case_id": "194952", + "pacer_doc_id": "042021961841", + "pacer_magic_num": "94822243", + "pacer_seq_no": "3", + "short_description": "Complaint" + } + ], + "docket_number": "24-50237", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "JTD", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null + }, + { + "case_name": "Franchise Group, Inc.", + "date_filed": null, + "docket_entries": [ + { + "date_filed": "2024-11-27", + "description": "Adversary case 24-50237. Complaint by Franchise Group, Inc. against Brian Gale, Mark Noble, Terry Philippas, John Does 1-20. Fee Amount $350 (91 (Declaratory judgment)),(71 (Injunctive relief - reinstatement of stay)). (Morton, Edmon)", + "document_number": "262", + "document_url": "https://ecf.deb.uscourts.gov/doc1/042021961842?pdf_header=&magic_num=24806255&de_seq_num=1262&caseid=194674", + "pacer_case_id": "194674", + "pacer_doc_id": "042021961842", + "pacer_magic_num": "24806255", + "pacer_seq_no": "1262", + "short_description": "Complaint" + } + ], + "docket_number": "24-12480", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "JTD", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null + } + ], + "email_recipients": [] +} \ No newline at end of file diff --git a/tests/examples/pacer/nef/s3/deb_multi_1.txt b/tests/examples/pacer/nef/s3/deb_multi_1.txt new file mode 100644 index 000000000..e82a81d58 --- /dev/null +++ b/tests/examples/pacer/nef/s3/deb_multi_1.txt @@ -0,0 +1,120 @@ +Return-Path: +Received: from icmecf201.gtwy.uscourts.gov (icmecf201.gtwy.uscourts.gov [63.241.40.204]) + by inbound-smtp.us-west-2.amazonaws.com with SMTP id 9kgc1ln21dsnii2363ru6i5m33slddhnoce8vc81 + for email@email.com; + Wed, 27 Nov 2024 20:23:19 +0000 (UTC) +X-SES-Spam-Verdict: PASS +X-SES-Virus-Verdict: PASS +Received-SPF: pass (spfCheck: domain of deb.uscourts.gov designates 63.241.40.204 as permitted sender) client-ip=63.241.40.204; envelope-from=email@email.com.gov; helo=icmecf201.gtwy.uscourts.gov; +Authentication-Results: amazonses.com; + spf=pass (spfCheck: domain of deb.uscourts.gov designates 63.241.40.204 as permitted sender) client-ip=63.241.40.204; envelope-from=email@email.com.gov; helo=icmecf201.gtwy.uscourts.gov; + dkim=pass header.i=@uscourts.gov; + dmarc=pass header.from=deb.uscourts.gov; +X-SES-RECEIPT: AEFBQUFBQUFBQUFHdHZHOWE2MlVXSDNUYkFWSjUvZm1rUGh4NHhuS2JyK1RMVm5LZ0xmR25uazE4SWdYMXZYMlEzUWJmd1MxRXdVOXBHZTlSRE5HK25kV3RTQkhoY3lMN0FKOUFXZ1FoclVUS2NPcDVLTUFaaWJVSVdXRlRiWlIyNWk3NGlZQ2N3N0s5VFpraXkzdGZoVEtrdWNxUDN1c1JSZTFFR1hSbWgyQnNHYjRnNzdSSW1ld2xSakZWeTJCRGtNdm81SXRRRHk2N3BpWUszaWFZYVFaMDlPNU9iWHgrZmxqejAraDVFc2taTSt2VFNKM09SbFJKUWNDT3NzV2tsemhyVFE1ZVZJRnFWVUdkNlhlUFZyZk5LTVpBbE5pYk00V3lXcE1YMGYrYjZRWUdtZGNhMzB6bnZQNmZibDk3VW93ajB6eFpsL2c9 +X-SES-DKIM-SIGNATURE: a=rsa-sha256; q=dns/txt; b=Ke8oYNrJJYGHmviIlXyFe2CCdndYZ2QWA4fl/NLVlick7weap5JOJeF87nCpm+Sr4+NNsHzNCxQBEhjVG4/GfHB2WWCg3vkabFTI3dU7fMzpNcL7hrpqqYLbU4G8nkNz36lJznaGa1H4YshQm2PwwXSLWjzoufeDHOh1hfwBOwo=; c=relaxed/simple; s=7v7vs6w47njt4pimodk5mmttbegzsi6n; d=amazonses.com; t=1732738999; v=1; bh=WJw5/tC3BDhoInDZNpvsKCzWaxqNpLdhmF4a12QQK/E=; h=From:To:Cc:Bcc:Subject:Date:Message-ID:MIME-Version:Content-Type:X-SES-RECEIPT; +DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; + d=uscourts.gov; i=@uscourts.gov; l=74915; q=dns/txt; + s=law1w; t=1732738999; x=1764274999; + h=date:x-authentication-warning:mime-version:from:to: + message-id:subject:content-type:x-sbrs:x-remote-ip; + bh=WJw5/tC3BDhoInDZNpvsKCzWaxqNpLdhmF4a12QQK/E=; + b=Vr71tjqC5C812emeFU1IYM81QoCzFJxuNELCnCpTCTwOFpU3EiX50Bzn + XXjALKDBH4PE4W/4ItjV9nrFoUhrEinfvKOjAr+qvAg+i4AD/s2QngInp + WnMioOkv9uUKmsDMK1e1iU5wFRzLkNhjuJ44fcPC0Hjrpo+IKExcZ/wZC + L0OkTX16HaF3WXn5yIRTt1w2hbwIbma9HOcldE5ou1GQk/LxleUzPCxXt + xPP5fVVkAQ5aGj2TAoYWMBlZJY9y1QH8udTvAM/vfMOXvrV9JoXBNkvtw + Av+nVHgWq1j6RHXzlPZRzTTv92bnTGmhufjnw3xtMj0ISl8k/m5Pp+WHK + A==; +X-SBRS: None +X-REMOTE-IP: 156.119.190.33 +Received: from debdb.deb.gtwy.dcn ([156.119.190.33]) + by icmecf201.gtwy.uscourts.gov with ESMTP; 27 Nov 2024 15:23:19 -0500 +Received: from debdb.deb.gtwy.dcn (localhost.localdomain [127.0.0.1]) + by debdb.deb.gtwy.dcn (8.14.7/8.14.7) with ESMTP id 4ARKLqui016644; + Wed, 27 Nov 2024 15:21:56 -0500 +Received: (from ecf_web@localhost) + by debdb.deb.gtwy.dcn (8.14.7/8.14.4/Submit) id 4ARKLj1Q016451; + Wed, 27 Nov 2024 15:21:45 -0500 +Date: Wed, 27 Nov 2024 15:21:45 -0500 +X-Authentication-Warning: debdb.deb.gtwy.dcn: ecf_web set sender to email@email.com.gov using -f +MIME-Version:1.0 +From:email@email.com.gov +To:email@email.com.gov +Message-Id: +Subject:24-50237-JTD 24-12480-JTD Franchise Group, I Complaint +Content-Type: text/html + +

***NOTE TO PUBLIC ACCESS USERS*** Judicial Conference of the United States policy permits attorneys of record and parties in a case (including pro se litigants) to receive one free electronic copy of all documents filed electronically, if receipt is required by law or directed by the filer. PACER access fees apply to all other users. To avoid later charges, download a copy of each document during this first viewing. However, if the referenced document is a transcript, the free copy and 30-page limit do not apply.

+ + + + +

U.S. Bankruptcy Court

+ +

District of Delaware

+Notice of Electronic Filing +
+
+
The following transaction was received from LastName, FirstName entered on 11/27/2024 at 3:21 PM EST and filed on 11/27/2024 + +
+ + + + + + + + + +
Case Name: +Franchise Group, Inc. v. Gale et al
Case Number:24-50237-JTD
Document Number: +1 +
+ + + + + + + + + +
Case Name: +Franchise Group, Inc.
Case Number:24-12480-JTD
Document Number: +262 +
+ + + + +

Docket Text: + +
+Adversary case 24-50237. Complaint Complaint of the Debtors by Franchise Group, Inc. against Brian Gale, Mark Noble, Terry Philippas, John Does 1-20. Fee Amount $350 (91 (Declaratory judgment)),(71 (Injunctive relief - reinstatement of stay)). (Morton, Edmon) +

+ +

The following document(s) are associated with this transaction:

+ +Document description:Main Document +
Original filename:COMPLAINT - FRG.pdf +
Electronic document Stamp: +
[STAMP bkecfStamp_ID=983460418 [Date=11/27/2024] [FileNumber=18915412- +
0] [135e5927c184520889dbfceb21654f384a82d7aefb2a7217ff3a351091b265db76 +
bc75781cb60c189dac1e772077b0f79cd459ddf6cd1377af03d07b4c911f8c]] +
+Document description:Main Document +
Original filename:COMPLAINT - FRG.pdf +
Electronic document Stamp: +
[STAMP bkecfStamp_ID=983460418 [Date=11/27/2024] [FileNumber=18915413- +
0] [2e2d177cedabd0c29e5799cd47bcbf66873c083a20573cfae1fb0c8dd7b542f727 +
3559881e4d53a2cb6f1538cb297597489e6acc767da49dac327dc40989fe76]] +
+ +
+
+ + + + +
diff --git a/tests/examples/pacer/nef/s3/deb_multi_2.json b/tests/examples/pacer/nef/s3/deb_multi_2.json new file mode 100644 index 000000000..a20739b4d --- /dev/null +++ b/tests/examples/pacer/nef/s3/deb_multi_2.json @@ -0,0 +1,54 @@ +{ + "appellate": false, + "contains_attachments": false, + "court_id": "deb", + "dockets": [ + { + "case_name": "George Miller, Chapter 7 Trustee of the bankruptcy v. Cardinal Health, Inc.", + "date_filed": null, + "docket_entries": [ + { + "date_filed": "2024-10-15", + "description": "Adversary Case 1:24-ap-50041 Closed (JMC)", + "document_number": null, + "document_url": null, + "pacer_case_id": "192740", + "pacer_doc_id": null, + "pacer_magic_num": null, + "pacer_seq_no": null, + "short_description": "Close Adversary Case" + } + ], + "docket_number": "24-50041", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "KBO", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null + }, + { + "case_name": "Akorn Holding Company LLC", + "date_filed": null, + "docket_entries": [ + { + "date_filed": "2024-10-15", + "description": "Adversary Case 1:24-ap-50041 Closed (JMC)", + "document_number": null, + "document_url": null, + "pacer_case_id": "189188", + "pacer_doc_id": null, + "pacer_magic_num": null, + "pacer_seq_no": null, + "short_description": "Close Adversary Case" + } + ], + "docket_number": "23-10253", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "KBO", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null + } + ], + "email_recipients": [] +} \ No newline at end of file diff --git a/tests/examples/pacer/nef/s3/deb_multi_2.txt b/tests/examples/pacer/nef/s3/deb_multi_2.txt new file mode 100644 index 000000000..c750cfa5f --- /dev/null +++ b/tests/examples/pacer/nef/s3/deb_multi_2.txt @@ -0,0 +1,106 @@ +Return-Path: +Received: from icmecf202.gtwy.uscourts.gov (icmecf202.gtwy.uscourts.gov [63.241.40.205]) + by inbound-smtp.us-west-2.amazonaws.com with SMTP id gphu60dhan6f8fi2i8brbbq996k0c62nmhjfbio1 + for email@email.com; + Tue, 15 Oct 2024 18:51:02 +0000 (UTC) +X-SES-Spam-Verdict: PASS +X-SES-Virus-Verdict: PASS +Received-SPF: pass (spfCheck: domain of deb.uscourts.gov designates 63.241.40.205 as permitted sender) client-ip=63.241.40.205; envelope-from=email@email.com.gov; helo=icmecf202.gtwy.uscourts.gov; +Authentication-Results: amazonses.com; + spf=pass (spfCheck: domain of deb.uscourts.gov designates 63.241.40.205 as permitted sender) client-ip=63.241.40.205; envelope-from=email@email.com.gov; helo=icmecf202.gtwy.uscourts.gov; + dkim=pass header.i=@uscourts.gov; + dmarc=pass header.from=deb.uscourts.gov; +X-SES-RECEIPT: AEFBQUFBQUFBQUFHdzhPWkRKT3c5K3VBMFNhdWp2U09iSDdUdU13MjJqbng1cFdDcklhMjNXUUxjQWZicnM1Q2JJYmIreSsvY1QxMmNoOHE4cjUzdEdtWGlWcVBkZk9rSkl1d2VFeklDYktFb2JpVzlOa0VlSjNMRWJuTjlCRFE3cEh1czUyWTRrcnZZNVNLMUlTM0lUZUt2VVNTeFcwTjdpMEV4R1QwbGUyQ295T3lvMWJmdFZ1T2RVOFUxbCt4QU1UZUdvSitSYmpZeWF1NjhSSEpyVzUrZlJaZ1I1YzYwMHQya3NxTWZubzIrZmk2eDVvQXljbXVoSWtDcmJzUWFFOHBWakxYbHQwSmV2c05mYURBSVZRT0gzMW85MGJ1NThRL1pVQ2gxRXFMby8rM1hXZW85VUFQZ3VUU1hiTHpsZXd4YkczSG5HWVk9 +X-SES-DKIM-SIGNATURE: a=rsa-sha256; q=dns/txt; b=law/L/3NCMM9+Pt6sbZHNXGpoMPnTRd9jbWyIxOgsxVX9k2F2dOBeXMrg+0KZdNOktD9nH413E0k9LD0i1FLU1JvVqRWkpiDHKSrvqk8GkrTYaWHTdL/sVMDlMi+78q7rnF3TNDq9M974CXCmxSgx9vcUlrJW3utmVV/+c/jpbI=; c=relaxed/simple; s=7v7vs6w47njt4pimodk5mmttbegzsi6n; d=amazonses.com; t=1729018263; v=1; bh=Zmqsc9/yHm92wXe4QkY9Bc2lnYS8VZ4QRnkQaY4gcc4=; h=From:To:Cc:Bcc:Subject:Date:Message-ID:MIME-Version:Content-Type:X-SES-RECEIPT; +DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; + d=uscourts.gov; i=@uscourts.gov; l=44045; q=dns/txt; + s=law1w; t=1729018262; x=1760554262; + h=date:x-authentication-warning:mime-version:from:to: + message-id:subject:content-type:x-sbrs:x-remote-ip; + bh=Zmqsc9/yHm92wXe4QkY9Bc2lnYS8VZ4QRnkQaY4gcc4=; + b=i5BLmBELT9Uw1gYgKV2ChIYNEjrjB1JqFtqi9z6DWvN8QovWvES8GRWy + KtVYoMLslBz6e4yQb2d2xTF4N2y8Ju/2oMbETf5evWBukll7tzdDhAfr/ + sIzWtJoKuTnII9q+470G0TduGPZXJbfA4B0T7HsFRK5kvZNLdEMwn7A6f + umKXxdXhWGNvmrfoFdCsQqc2AdCQvu3UC+ICa0Px26oGWaJlZeJ4VQ2K3 + T0UssaADSNhmIDLmcec1TQVF+s/cPdjbYOUqOWgtOgVOj8BW+cGPM0bMt + 5s2oLM9FxgIpdSUYTiXSyKGxyzWRBk0D8RXTOm5RA/34UI8IcFfy98HII + g==; +X-SBRS: None +X-REMOTE-IP: 156.119.190.33 +Received: from debdb.deb.gtwy.dcn ([156.119.190.33]) + by icmecf202.gtwy.uscourts.gov with ESMTP; 15 Oct 2024 14:51:02 -0400 +Received: from debdb.deb.gtwy.dcn (localhost.localdomain [127.0.0.1]) + by debdb.deb.gtwy.dcn (8.14.7/8.14.7) with ESMTP id 49FInUS4062948; + Tue, 15 Oct 2024 14:49:37 -0400 +Received: (from ecf_web@localhost) + by debdb.deb.gtwy.dcn (8.14.7/8.14.4/Submit) id 49FInGsJ062015; + Tue, 15 Oct 2024 14:49:16 -0400 +Date: Tue, 15 Oct 2024 14:49:16 -0400 +X-Authentication-Warning: debdb.deb.gtwy.dcn: ecf_web set sender to email@email.com.gov using -f +MIME-Version:1.0 +From:email@email.com.gov +To:email@email.com.gov +Message-Id: +Subject:Multiple Cases "23-10253-KBO Akorn Holding Comp Close Adversary Case" +Content-Type: text/html + +

***NOTE TO PUBLIC ACCESS USERS*** Judicial Conference of the United States policy permits attorneys of record and parties in a case (including pro se litigants) to receive one free electronic copy of all documents filed electronically, if receipt is required by law or directed by the filer. PACER access fees apply to all other users. To avoid later charges, download a copy of each document during this first viewing. However, if the referenced document is a transcript, the free copy and 30-page limit do not apply.

+ + + + +

U.S. Bankruptcy Court

+ +

District of Delaware

+Notice of Electronic Filing +
+
+
The following transaction was received from LastName, FirstName entered on 10/15/2024 at 2:49 PM EDT and filed on 10/15/2024 + +
+ + + + + + + + + +
Case Name: +George Miller, Chapter 7 Trustee of the bankruptcy v. Cardinal Health, Inc.
Case Number:24-50041-KBO
WARNING: CASE CLOSED on 10/15/2024
Document Number: + +
+ + + + + + + + + +
Case Name: +Akorn Holding Company LLC
Case Number:23-10253-KBO
Document Number: + +
+ + + + +

Docket Text: + +
+Adversary Case 1:24-ap-50041 Closed (JMC) +

+ +

The following document(s) are associated with this transaction:

+ + +
+
+ + + + +
diff --git a/tests/examples/pacer/nef/s3/flsb_1.json b/tests/examples/pacer/nef/s3/flsb_1.json new file mode 100644 index 000000000..b5a075aff --- /dev/null +++ b/tests/examples/pacer/nef/s3/flsb_1.json @@ -0,0 +1,31 @@ +{ + "appellate": false, + "contains_attachments": true, + "court_id": "flsb", + "dockets": [ + { + "case_name": "Evan Phillip Jowers", + "date_filed": null, + "docket_entries": [ + { + "date_filed": "2024-12-12", + "description": "Chapter 11 Monthly Operating Report for the Period Ending 10/31/2024 Filed by Debtor Evan Phillip Jowers. (Attachments: (1) Bank Statement (2) Receipts and Disbursements) (Van Horn, Chad)", + "document_number": "117", + "document_url": "https://ecf.flsb.uscourts.gov/doc1/050057572723?pdf_header=&magic_num=58443666&de_seq_num=384&caseid=814478", + "pacer_case_id": "814478", + "pacer_doc_id": "050057572723", + "pacer_magic_num": "58443666", + "pacer_seq_no": "384", + "short_description": "UST Form 11" + } + ], + "docket_number": "24-13584", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "MAM", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null + } + ], + "email_recipients": [] +} \ No newline at end of file diff --git a/tests/examples/pacer/nef/s3/flsb_1.txt b/tests/examples/pacer/nef/s3/flsb_1.txt new file mode 100644 index 000000000..9c0d5ce2e --- /dev/null +++ b/tests/examples/pacer/nef/s3/flsb_1.txt @@ -0,0 +1,117 @@ +Return-Path: +Received: from icmecf201.gtwy.uscourts.gov (icmecf201.gtwy.uscourts.gov [63.241.40.204]) + by inbound-smtp.us-west-2.amazonaws.com with SMTP id 6i1cv2mirg9slsnkeahp2dnfs00qt6n2b2e0uc81 + for email@email.com; + Thu, 12 Dec 2024 16:28:54 +0000 (UTC) +X-SES-Spam-Verdict: PASS +X-SES-Virus-Verdict: PASS +Received-SPF: pass (spfCheck: domain of flsb.uscourts.gov designates 63.241.40.204 as permitted sender) client-ip=63.241.40.204; envelope-from=email@email.com.gov; helo=icmecf201.gtwy.uscourts.gov; +Authentication-Results: amazonses.com; + spf=pass (spfCheck: domain of flsb.uscourts.gov designates 63.241.40.204 as permitted sender) client-ip=63.241.40.204; envelope-from=email@email.com.gov; helo=icmecf201.gtwy.uscourts.gov; + dkim=pass header.i=@uscourts.gov; + dmarc=pass header.from=flsb.uscourts.gov; +X-SES-RECEIPT: AEFBQUFBQUFBQUFHazRxWEtHa1UvRUluUHFPeDkyK25BV01hcnY2RHdrM1M4bnRMa05RWFFoMFhGZ3I5ZmF1MEFlU3g5UWlBSFh3WjIwTDhPU1FDWEN2VlNyWlArL2JHdUtxUm1IbzVGaEk0SnhYd1VOQ0EyWGhqV2QydXhUekpNVzZPbkttdUhDY1puN05aMzJDUnBMa0xRTDdzQyszQm5ZaDVBckZnckpGZDJYdW9BamN0aCtUVTZoQlZrNEdRTFhieEU4VzVPUkdzNlQvVXQyTEt1OGNNMmdMSklNQWVrRTFVWmtEY3QxcTAveUxrVDB4UTJFY3lzcmJQUkhtOHpjYjBUWEFQWk50SFU3QlgwQm04K05xWFdtWE02cGRhZlN5SjJhek9BMHlWc3dTN3lldVBSbjBzMGpkRGNacVNCbzZoN1FnNjFTQ0k9 +X-SES-DKIM-SIGNATURE: a=rsa-sha256; q=dns/txt; b=iEQVggdtgBNLBpxlx03KpydHQCWmnfhxJRgKIaE0nAWhUev71nUDCVrMVK2Qg9NHiMppVU4p2T4/etT1qBFJQZ4quoLJ9/hJRkW0F3QAgMSblT61Le6C8uOGrr825r67ZjpYGP+ucZ+xeOTBNGeMbuK1OR0p7od3FSXxZ5krGXw=; c=relaxed/simple; s=7v7vs6w47njt4pimodk5mmttbegzsi6n; d=amazonses.com; t=1734020935; v=1; bh=uEylFRjIfG3uGqAq6+ozTRRZTJsncoR0btFSqgllBKY=; h=From:To:Cc:Bcc:Subject:Date:Message-ID:MIME-Version:Content-Type:X-SES-RECEIPT; +DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; + d=uscourts.gov; i=@uscourts.gov; l=5944; q=dns/txt; + s=law1w; t=1734020934; x=1765556934; + h=date:x-authentication-warning:mime-version:from:to: + message-id:subject:content-type:x-sbrs:x-remote-ip; + bh=uEylFRjIfG3uGqAq6+ozTRRZTJsncoR0btFSqgllBKY=; + b=RWJilaufKp7E3Osok2NQ9c2xOVFUx/lwvJ9O+Pean2TC9v2bUfcH4+pk + BK14Is8TSvKgjaOBy7rQOzjIzsI8qUwsUlh1LC4cAhGBGaFgABuUV81ot + Uytd79apcNSsByw8VEb/uQlPLxHqROmUuLe36v9WwuAsU6P+z7KW86/DE + plQhkDNPZb8zC6HM3NnvbWJTwQUEhtziBFSDZEWcQ98RWJZ56/uanNTUm + IiX9W45H4GLD8WkQ0wUWKDczjAPSfEpOpDq0Uk0oe/10UpEA+Xm3Kx1L9 + +gA1r062J930KOjwkzBLzUrGobKN8j38bRA7hgAd6elnnVPMmU1yHzF1/ + w==; +X-SBRS: None +X-REMOTE-IP: 156.119.190.62 +Received: from flsbdb.flsb.gtwy.dcn ([156.119.190.62]) + by icmecf201.gtwy.uscourts.gov with ESMTP; 12 Dec 2024 11:28:53 -0500 +Received: from flsbdb.flsb.gtwy.dcn (localhost.localdomain [127.0.0.1]) + by flsbdb.flsb.gtwy.dcn (8.14.7/8.14.7) with ESMTP id 4BCGRlOH094745; + Thu, 12 Dec 2024 11:27:50 -0500 +Received: (from ecf_web@localhost) + by flsbdb.flsb.gtwy.dcn (8.14.7/8.14.4/Submit) id 4BCGR3pK092637; + Thu, 12 Dec 2024 11:27:03 -0500 +Date: Thu, 12 Dec 2024 11:27:03 -0500 +X-Authentication-Warning: flsbdb.flsb.gtwy.dcn: ecf_web set sender to email@email.com.GOV using -f +MIME-Version:1.0 +From:email@email.com.gov +To:email@email.com.gov +Message-Id: +Subject:Ch-11 24-13584-MAM UST Form 11-MOR Evan Phillip Jower +Content-Type: text/html + +

***NOTE TO PUBLIC ACCESS USERS*** Judicial Conference of the United States policy permits attorneys of record and parties in a case (including pro se litigants) to receive one free electronic copy of all documents filed electronically, if receipt is required by law or directed by the filer. PACER access fees apply to all other users. To avoid later charges, download a copy of each document during this first viewing. However, if the referenced document is a transcript, the free copy and 30-page limit do not apply.

+ + + + +

U.S. Bankruptcy Court

+ +

Southern District of Florida

+Notice of Electronic Filing +
+
+
The following transaction was received from LastName, FirstName entered on 12/12/2024 at 11:27 AM EST and filed on 12/12/2024 + +
+ + + + + + + + + +
Case Name: +Evan Phillip Jowers
Case Number:24-13584-MAM
Document Number: +117 +
+ + + + +

Docket Text: + +
+ Chapter 11 Monthly Operating Report for the Period Ending 10/31/2024 Filed by Debtor Evan Phillip Jowers. (Attachments: # (1) Bank Statement # (2) Receipts and Disbursements) (Van Horn, Chad) +

+ +

The following document(s) are associated with this transaction:

+ +Document description:Main Document +
Original filename:A91u4o7ou_1san4il_oas.tmp.pdf +
Electronic document + Stamp: +
[STAMP bkecfStamp_ID=1068065210 [Date=12/12/2024] [FileNumber=59402527 +
-0] [3518fa4b7ce4e6ceaaf4bd3faf3f22e1c111e58bccfbac6db9b4073af8a79c94f +
27f6d1933287f49fc274659ea9aa0031e3dc466a2bae340b9e814110c1686e9]] +
+Document description: Bank Statement +
Original filename:C:\fakepath\DIP Oct 2024_Redacted.pdf +
Electronic document + Stamp: +
[STAMP bkecfStamp_ID=1068065210 [Date=12/12/2024] [FileNumber=59402527 +
-1] [37ab1cea8be2b7787e85797a0c713698f5c0cb00b05e26fcdf88227a9166c1c00 +
14b77394f10cd4888e2043cc1084e6b2e60dda0b06c227b3030406e13e7257a]] +
+Document description: Receipts and Disbursements +
Original filename:C:\fakepath\Receipts & Disbursements - Individual.pdf +
Electronic document + Stamp: +
[STAMP bkecfStamp_ID=1068065210 [Date=12/12/2024] [FileNumber=59402527 +
-2] [9aa6e49f8cdf45584464204142e57bbf5064aa522c2bd5eedcf176979cbe978f6 +
4c8dcf2f580fa781f14db253e6dc5ce5cd99f5b94a796bbdcd543d801c97586]] +
+ +
+
+ + + + +
diff --git a/tests/examples/pacer/nef/s3/flsb_2.json b/tests/examples/pacer/nef/s3/flsb_2.json new file mode 100644 index 000000000..c23bc978a --- /dev/null +++ b/tests/examples/pacer/nef/s3/flsb_2.json @@ -0,0 +1,31 @@ +{ + "appellate": false, + "contains_attachments": false, + "court_id": "flsb", + "dockets": [ + { + "case_name": "Evan Phillip Jowers", + "date_filed": null, + "docket_entries": [ + { + "date_filed": "2024-12-10", + "description": "Notice of Hearing (Re: [107] Motion For Entry of an Order Quashing Counsel Holdings, Inc.'s Subpoena Pursuant to Federal Rule of Bankruptcy Procedure 9016 And Federal Rule of Civil Procedure 45(d)(3)(A)(B), Filed by Interested Party David Hyers., [108] Motion For Entry of an Order Quashing Counsel Holdings, Inc.'s Subpoena Pursuant to Federal Rule of Bankruptcy Procedure 9016 And Federal Rule of Civil Procedure 45(d)(3)(A)(B), Filed by Interested Party Alexis Lamb., [109] Motion For Entry of an Order Quashing Counsel Holdings, Inc.'s Subpoena Pursuant to Federal Rule of Bankruptcy Procedure 9016 And Federal Rule of Civil Procedure 45(d)(3)(A)(B), Filed by Interested Party Josh Carr.) Chapter 11 Hearing scheduled for 12/23/2024 at 02:30 PM by Video Conference. (Romaguera-Serfaty, Maria)", + "document_number": "110", + "document_url": "https://ecf.flsb.uscourts.gov/doc1/0500?pdf_header=&magic_num=25374736&de_seq_num=361&caseid=814478", + "pacer_case_id": "814478", + "pacer_doc_id": "0500", + "pacer_magic_num": "25374736", + "pacer_seq_no": "361", + "short_description": "Notice of Hearing" + } + ], + "docket_number": "24-13584", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "MAM", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null + } + ], + "email_recipients": [] +} \ No newline at end of file diff --git a/tests/examples/pacer/nef/s3/flsb_2.txt b/tests/examples/pacer/nef/s3/flsb_2.txt new file mode 100644 index 000000000..e8e1945af --- /dev/null +++ b/tests/examples/pacer/nef/s3/flsb_2.txt @@ -0,0 +1,93 @@ +Return-Path: +Received: from icmecf202.gtwy.uscourts.gov (icmecf202.gtwy.uscourts.gov [63.241.40.205]) + by inbound-smtp.us-west-2.amazonaws.com with SMTP id g5re8rui1ac7mu3nr1tn2d9p2bplooefmas2m581 + for email@email.com; + Tue, 10 Dec 2024 21:06:51 +0000 (UTC) +X-SES-Spam-Verdict: PASS +X-SES-Virus-Verdict: PASS +Received-SPF: pass (spfCheck: domain of flsb.uscourts.gov designates 63.241.40.205 as permitted sender) client-ip=63.241.40.205; envelope-from=email@email.com.gov; helo=icmecf202.gtwy.uscourts.gov; +Authentication-Results: amazonses.com; + spf=pass (spfCheck: domain of flsb.uscourts.gov designates 63.241.40.205 as permitted sender) client-ip=63.241.40.205; envelope-from=email@email.com.gov; helo=icmecf202.gtwy.uscourts.gov; + dkim=pass header.i=@uscourts.gov; + dmarc=pass header.from=flsb.uscourts.gov; +X-SES-RECEIPT: AEFBQUFBQUFBQUFHRWV4aHVLbXp5ZHlMS3k1Qzg4azk4TjRCWFFYaXpPNU5DQlJtcmhwZDM2TEttRWlBNUIxb0R5NUdNZDlNYkFkVml0dDFpUUFnaG9LQ3Zlb2s0WDBwLzd2cUUreE9JNWhTb055WEJwVWdGYzY4akoySVRpeGJxL2xEWUo1Zk96aitBQlhDVVRVR0FYNVdMS2hjV2pVR1pJWmY5VnNyc0dGK1VTcE1oSVlrbE9jWlhJNVFIaURaSDFWejhyazBUeTdWRVljUWJiMkRiZG1RSkhVV1NkTkZVZzZ5VW5yK0ZudlZ3YmN2NFZuY2tLRXJlZU8zeDd0bGt6aWI3YTNoSjE0QjI3a1hreXRqM29sTFZxVStXMGxBRC9XamdFNWtYNTNweWZwS09WN1owaXBXSXUxVmNTenl4ZTZsUU9BdCtvb0k9 +X-SES-DKIM-SIGNATURE: a=rsa-sha256; q=dns/txt; b=VGXbUXzHPPqN6Bsn7VxDfUfKgnJytsfqzyqQeS6kJ0XWm961foau886z/6vh2bVB5DNGFxpt0i1mjFUUZUXLuVyk/ZjaE+1n91hJQVcwD4L0aYBWdZ+U8iqhIUA8YA3kE5Gm+fNBQCa5+Euckcs1ULO2ZgGth42m2/YOOOgNbOU=; c=relaxed/simple; s=7v7vs6w47njt4pimodk5mmttbegzsi6n; d=amazonses.com; t=1733864812; v=1; bh=mGO7kIoMODnGYfFPJCGsgvFj5mY+1EEVPwH6sEoaGuc=; h=From:To:Cc:Bcc:Subject:Date:Message-ID:MIME-Version:Content-Type:X-SES-RECEIPT; +DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; + d=uscourts.gov; i=@uscourts.gov; l=5135; q=dns/txt; + s=law1w; t=1733864811; x=1765400811; + h=date:x-authentication-warning:mime-version:from:to: + message-id:subject:content-type:x-sbrs:x-remote-ip; + bh=mGO7kIoMODnGYfFPJCGsgvFj5mY+1EEVPwH6sEoaGuc=; + b=PX9gAvuRcAJsV787o+g8axfO/iJJv1o8Jq1HGLvZzTKvghBFu8G9aV4e + /pIsAT5+yKF2bmyYoIp8Snp0wq9+C+l8BToNyW1mzVgiItfOJmiWDReMT + eQJbsfkOgPretngMCw4frt5pjygg1559s1rvADTtX+c52BV+j9rDVD8Td + EUL6c1XLoBxPpgcm6rw6gMp2WSl/fVEH/aZNDEXWjjnhQwfIcjHzvxiPA + VCWrYM2DOBcaPwQfU3rjk3572OsiaiKqjXpxtOSi08kpR+usADhapmFZ4 + 62u+S6p9/u1P9PqPb11MvS6QCKRadjaTpWq7hg8NgJuLHW4QauCPv4+9S + A==; +X-SBRS: None +X-REMOTE-IP: 156.119.190.62 +Received: from flsbdb.flsb.gtwy.dcn ([156.119.190.62]) + by icmecf202.gtwy.uscourts.gov with ESMTP; 10 Dec 2024 16:06:51 -0500 +Received: from flsbdb.flsb.gtwy.dcn (localhost.localdomain [127.0.0.1]) + by flsbdb.flsb.gtwy.dcn (8.14.7/8.14.7) with ESMTP id 4BAL5wSJ056873; + Tue, 10 Dec 2024 16:05:59 -0500 +Received: (from ecf_web@localhost) + by flsbdb.flsb.gtwy.dcn (8.14.7/8.14.4/Submit) id 4BAL5lbs056535; + Tue, 10 Dec 2024 16:05:47 -0500 +Date: Tue, 10 Dec 2024 16:05:47 -0500 +X-Authentication-Warning: flsbdb.flsb.gtwy.dcn: ecf_web set sender to email@email.com.GOV using -f +MIME-Version:1.0 +From:email@email.com.gov +To:email@email.com.gov +Message-Id: +Subject:Ch-11 24-13584-MAM Notice of Hearing Evan Phillip Jower +Content-Type: text/html + +

***NOTE TO PUBLIC ACCESS USERS*** Judicial Conference of the United States policy permits attorneys of record and parties in a case (including pro se litigants) to receive one free electronic copy of all documents filed electronically, if receipt is required by law or directed by the filer. PACER access fees apply to all other users. To avoid later charges, download a copy of each document during this first viewing. However, if the referenced document is a transcript, the free copy and 30-page limit do not apply.

+ + + + +

U.S. Bankruptcy Court

+ +

Southern District of Florida

+Notice of Electronic Filing +
+
+
The following transaction was received from LastName, FirstName entered on 12/10/2024 at 4:05 PM EST and filed on 12/10/2024 + +
+ + + + + + + + + +
Case Name: +Evan Phillip Jowers
Case Number:24-13584-MAM
Document Number: +110 +
+ + + + +

Docket Text: + +
+Notice of Hearing (Re: [107] Motion For Entry of an Order Quashing Counsel Holdings, Inc.'s Subpoena Pursuant to Federal Rule of Bankruptcy Procedure 9016 And Federal Rule of Civil Procedure 45(d)(3)(A)(B), Filed by Interested Party David Hyers., [108] Motion For Entry of an Order Quashing Counsel Holdings, Inc.'s Subpoena Pursuant to Federal Rule of Bankruptcy Procedure 9016 And Federal Rule of Civil Procedure 45(d)(3)(A)(B), Filed by Interested Party Alexis Lamb., [109] Motion For Entry of an Order Quashing Counsel Holdings, Inc.'s Subpoena Pursuant to Federal Rule of Bankruptcy Procedure 9016 And Federal Rule of Civil Procedure 45(d)(3)(A)(B), Filed by Interested Party Josh Carr.) Chapter 11 Hearing scheduled for 12/23/2024 at 02:30 PM by Video Conference. (Romaguera-Serfaty, Maria) +

+ +

The following document(s) are associated with this transaction:

+ + +
+
+ + + + +
diff --git a/tests/examples/pacer/nef/s3/mdb_2.json b/tests/examples/pacer/nef/s3/mdb_2.json index acd732102..6bde06cd2 100644 --- a/tests/examples/pacer/nef/s3/mdb_2.json +++ b/tests/examples/pacer/nef/s3/mdb_2.json @@ -16,7 +16,7 @@ "pacer_doc_id": "092051714783", "pacer_magic_num": "11582823", "pacer_seq_no": "409", - "short_description": "Order on Motion To Quash" + "short_description": "Order on Motion To Quash - CH" } ], "docket_number": "22-00193", diff --git a/tests/examples/pacer/nef/s3/mdb_multi_1.json b/tests/examples/pacer/nef/s3/mdb_multi_1.json new file mode 100644 index 000000000..0cdfa56a7 --- /dev/null +++ b/tests/examples/pacer/nef/s3/mdb_multi_1.json @@ -0,0 +1,54 @@ +{ + "appellate": false, + "contains_attachments": false, + "court_id": "mdb", + "dockets": [ + { + "case_name": "Jefferson v. Alter", + "date_filed": null, + "docket_entries": [ + { + "date_filed": "2024-09-25", + "description": "Adversary Case 0:22-ap-193 Closed. (Kaniowski, Amanda)", + "document_number": null, + "document_url": null, + "pacer_case_id": "768557", + "pacer_doc_id": null, + "pacer_magic_num": null, + "pacer_seq_no": null, + "short_description": "Close Adversary Case" + } + ], + "docket_number": "22-00193", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null + }, + { + "case_name": "SDI Properties, LLC", + "date_filed": null, + "docket_entries": [ + { + "date_filed": "2024-09-25", + "description": "Adversary Case 0:22-ap-193 Closed. (Kaniowski, Amanda)", + "document_number": null, + "document_url": null, + "pacer_case_id": "753920", + "pacer_doc_id": null, + "pacer_magic_num": null, + "pacer_seq_no": null, + "short_description": "Close Adversary Case" + } + ], + "docket_number": "20-20650", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null + } + ], + "email_recipients": [] +} \ No newline at end of file diff --git a/tests/examples/pacer/nef/s3/mdb_multi_1.txt b/tests/examples/pacer/nef/s3/mdb_multi_1.txt new file mode 100644 index 000000000..342dc4459 --- /dev/null +++ b/tests/examples/pacer/nef/s3/mdb_multi_1.txt @@ -0,0 +1,91 @@ +Return-Path: +Received: from icmecf201.gtwy.uscourts.gov (icmecf201.gtwy.uscourts.gov [63.241.40.204]) + by inbound-smtp.us-west-2.amazonaws.com with SMTP id msdi901dqkshl6ll8ivfk1rc3btlbsski4097b81 + for email@email.com; + Wed, 25 Sep 2024 14:53:16 +0000 (UTC) +X-SES-Spam-Verdict: PASS +X-SES-Virus-Verdict: PASS +Received-SPF: pass (spfCheck: domain of mdb.uscourts.gov designates 63.241.40.204 as permitted sender) client-ip=63.241.40.204; envelope-from=email@email.com.gov; helo=icmecf201.gtwy.uscourts.gov; +Authentication-Results: amazonses.com; + spf=pass (spfCheck: domain of mdb.uscourts.gov designates 63.241.40.204 as permitted sender) client-ip=63.241.40.204; envelope-from=email@email.com.gov; helo=icmecf201.gtwy.uscourts.gov; + dmarc=none header.from=mdb.uscourts.gov; +X-SES-RECEIPT: AEFBQUFBQUFBQUFHRmNZaERGMHVPL3dRZDlDR01HUmFTTjkrNExxVVBaMDlqdFY3UVM1dStFcWxmelFSYkVNOHZ6YWNtQ3VvZTg0TGZNRzEvTmpxenRKT1RaaGhVMnRJbk5hbzhtbnBOUW0rRUo3M0t2aitCeW5EMTlMSElCVGpnMmhmSnV6bHVHSlNYVzNVQVhjamkyWG9xTldwVUhSY2ZTdGEyRS9GOWttOW1GQWYwOGNlZ1haRVZJQWp0QnBrdHZscmRUUWJid295UUtza0hxdTRxM0NHajkyR25qYVFSWE4weXZtT1YvNVI4L2xNeWdqUFo4Mk5COVBVMkc0ajE3Q29ySmtEOUlQRXJwZlBIdzA5SHBDaUJjemQrRGRwRmllMnhNOTBhdGNkTzFTTXFHa2VINnc9PQ== +X-SES-DKIM-SIGNATURE: a=rsa-sha256; q=dns/txt; b=e8bCcwgkgbpu1q3DszP2a0PDPkpbeC6ZofztR8KYzHB6OBZL9gAia0TcBOfYm6ahYffcJCsc8odgTwFXtZu80ScmjKiB7GVIOIo603Xl3XDqkjJspLd5uY1hHARTbXz2SXqY7Tmm9/s2E9gd/6ZXlE0rLnugxC2ghfthei2xUqo=; c=relaxed/simple; s=7v7vs6w47njt4pimodk5mmttbegzsi6n; d=amazonses.com; t=1727275997; v=1; bh=wYRFdYWNUmWptN9I3UaSjPky0bic2aDI5DK8TZjlDWI=; h=From:To:Cc:Bcc:Subject:Date:Message-ID:MIME-Version:Content-Type:X-SES-RECEIPT; +X-SBRS: None +X-REMOTE-IP: 156.119.190.184 +Received: from mdbdb.mdb.gtwy.dcn ([156.119.190.184]) + by icmecf201.gtwy.uscourts.gov with ESMTP; 25 Sep 2024 10:53:16 -0400 +Received: from mdbdb.mdb.gtwy.dcn (localhost.localdomain [127.0.0.1]) + by mdbdb.mdb.gtwy.dcn (8.14.7/8.14.7) with ESMTP id 48PEqEja118026; + Wed, 25 Sep 2024 10:52:18 -0400 +Received: (from ecf_web@localhost) + by mdbdb.mdb.gtwy.dcn (8.14.7/8.14.4/Submit) id 48PEq2kO117406; + Wed, 25 Sep 2024 10:52:02 -0400 +Date: Wed, 25 Sep 2024 10:52:02 -0400 +MIME-Version:1.0 +From:email@email.com.gov +To:email@email.com.gov +Message-Id: +Subject:Multiple Cases "Close Adversary Case" - AP - +Content-Type: text/html + +

***NOTE TO PUBLIC ACCESS USERS*** Judicial Conference of the United States policy permits attorneys of record and parties in a case (including pro se litigants) to receive one free electronic copy of all documents filed electronically, if receipt is required by law or directed by the filer. PACER access fees apply to all other users. To avoid later charges, download a copy of each document during this first viewing. However, if the referenced document is a transcript, the free copy and 30-page limit do not apply.

+ + + + +

U.S. Bankruptcy Court

+ +

District of Maryland

+Notice of Electronic Filing +
+
+
The following transaction was received from LastName, FirstName entered on 9/25/2024 at 10:51 AM EDT and filed on 9/25/2024 + +
+ + + + + + + + + +
Case Name: +Jefferson v. Alter et al
Case Number:22-00193
WARNING: CASE CLOSED on 09/25/2024
Document Number: + +
+ + + + + + + + + +
Case Name: +SDI Properties, LLC
Case Number:20-20650
Document Number: + +
+ + + + +

Docket Text: + +
+Adversary Case 0:22-ap-193 Closed. (Kaniowski, Amanda) +

+ +

The following document(s) are associated with this transaction:

+ + +
+
+ + + + +
diff --git a/tests/examples/pacer/nef/s3/mdb_multi_2.json b/tests/examples/pacer/nef/s3/mdb_multi_2.json new file mode 100644 index 000000000..39c5e051d --- /dev/null +++ b/tests/examples/pacer/nef/s3/mdb_multi_2.json @@ -0,0 +1,54 @@ +{ + "appellate": false, + "contains_attachments": false, + "court_id": "mdb", + "dockets": [ + { + "case_name": "Laura J. Margulies, Chapter 7 Trustee for Botanica v. Rodas", + "date_filed": null, + "docket_entries": [ + { + "date_filed": "2024-11-22", + "description": "Adversary Case 0:24-ap-16 Closed. (Horning, Kelly)", + "document_number": null, + "document_url": null, + "pacer_case_id": "780665", + "pacer_doc_id": null, + "pacer_magic_num": null, + "pacer_seq_no": null, + "short_description": "Close Adversary Case" + } + ], + "docket_number": "24-00016", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null + }, + { + "case_name": "Botanical Decorators, Inc.", + "date_filed": null, + "docket_entries": [ + { + "date_filed": "2024-11-22", + "description": "Adversary Case 0:24-ap-16 Closed. (Horning, Kelly)", + "document_number": null, + "document_url": null, + "pacer_case_id": "769236", + "pacer_doc_id": null, + "pacer_magic_num": null, + "pacer_seq_no": null, + "short_description": "Close Adversary Case" + } + ], + "docket_number": "22-16223", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null + } + ], + "email_recipients": [] +} \ No newline at end of file diff --git a/tests/examples/pacer/nef/s3/mdb_multi_2.txt b/tests/examples/pacer/nef/s3/mdb_multi_2.txt new file mode 100644 index 000000000..619fb0130 --- /dev/null +++ b/tests/examples/pacer/nef/s3/mdb_multi_2.txt @@ -0,0 +1,106 @@ +Return-Path: +Received: from icmecf201.gtwy.uscourts.gov (icmecf201.gtwy.uscourts.gov [63.241.40.204]) + by inbound-smtp.us-west-2.amazonaws.com with SMTP id ev1lfkdivupee88ov38sum8gdm627u4bk09o1fg1 + for email@email.com; + Fri, 22 Nov 2024 16:33:00 +0000 (UTC) +X-SES-Spam-Verdict: PASS +X-SES-Virus-Verdict: PASS +Received-SPF: pass (spfCheck: domain of mdb.uscourts.gov designates 63.241.40.204 as permitted sender) client-ip=63.241.40.204; envelope-from=email@email.com.gov; helo=icmecf201.gtwy.uscourts.gov; +Authentication-Results: amazonses.com; + spf=pass (spfCheck: domain of mdb.uscourts.gov designates 63.241.40.204 as permitted sender) client-ip=63.241.40.204; envelope-from=email@email.com.gov; helo=icmecf201.gtwy.uscourts.gov; + dkim=pass header.i=@uscourts.gov; + dmarc=pass header.from=mdb.uscourts.gov; +X-SES-RECEIPT: AEFBQUFBQUFBQUFIWUxlcS8yenU0SEVGU3Zja2ZVVUk2eHBodWtwYTVweElCOGRQZnZXRGl3Q3pGM3BuYUVFWjdaaCsvYUlJbXBYK2cxWFhHTHFMWjQ1U1FDb0FTb1dtUm1OMXd6S1UwcVNITWQ1S3pmdFE4d1l1N3lXVjZ4SHhMMDhwa0s4U3JVUytWMXFORGtXcVVBRlBBK0lnbGFlNzFud1dJTFdsLzVpM2xWOElkRElYZHgyQm5FWEQ5VVlEOG5MZE1jVWZNbFRxWm5LR2RKQU9iWE1JdUE3Qkh1MlNFUGEyUWtndUJDWnlJQkRUVS82UFByOGhVSFhqRThHeUV1VU5NNnFlK3BHVTZFenZ3SWVHSVBvTHZ3cytvSkg2YUFrNTcrN282aDl5V2s2VnZrT2NYYlE9PQ== +X-SES-DKIM-SIGNATURE: a=rsa-sha256; q=dns/txt; b=qHtZg+mSfZsvnBgRD0sMTRVRpoFRRT5Xhl805QEEG0h+J/wSTHSwVsF70Qr1Am3KG0ug0jEbWnaatH+9JKCprRlXk7TC+PovidT4ZNYXRT9GRm0ufgkHk/a9RHU0LOBjoZQM555Rjui4VkW+1jlt9JjcY/O7XWEHBQe8fGPjAj4=; c=relaxed/simple; s=7v7vs6w47njt4pimodk5mmttbegzsi6n; d=amazonses.com; t=1732293181; v=1; bh=qCjxr687x2KWxsBnSjQuvjCYuK2qlnzlsOOFC0FuhKo=; h=From:To:Cc:Bcc:Subject:Date:Message-ID:MIME-Version:Content-Type:X-SES-RECEIPT; +DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; + d=uscourts.gov; i=@uscourts.gov; l=5177; q=dns/txt; + s=law1w; t=1732293180; x=1763829180; + h=date:mime-version:from:to:message-id:subject: + content-type:x-sbrs:x-remote-ip; + bh=qCjxr687x2KWxsBnSjQuvjCYuK2qlnzlsOOFC0FuhKo=; + b=XZccY1efElD9WzdgjDz6fZL/htwIdKYYKJ5Msd24BfxqMMmuzYu+VHoh + Y5UUY3ZBzCNpPhnMOXg+ydIA9qG9PLG1cVDdhUdMJvapxkVVyRrsTkPtU + 7CsYd7HlJEUghWcq6VP2LVcZyStE6uXOHSHXBcq623Jtl4ER0qIhQbInH + bdIZab1nxhzshSFpidMfsXDq+iSPXloCBMOfB1DExdprtb4y1UAAaGZul + BzpC3j2iaKE85BYZjZSiXbeaq8+huwRrhOKdHPDoV9PPZqkSM25IdypZW + kVonAZjAahblM1OwWP4wI6LrPlF1ESCo0qWaTKCGE4XTl1iiqjx7EFz1V + Q==; +X-SBRS: None +X-REMOTE-IP: 156.119.190.184 +Received: from mdbdb.mdb.gtwy.dcn ([156.119.190.184]) + by icmecf201.gtwy.uscourts.gov with ESMTP; 22 Nov 2024 11:33:00 -0500 +Received: from mdbdb.mdb.gtwy.dcn (localhost.localdomain [127.0.0.1]) + by mdbdb.mdb.gtwy.dcn (8.14.7/8.14.7) with ESMTP id 4AMGW6Em085723; + Fri, 22 Nov 2024 11:32:08 -0500 +Received: (from ecf_web@localhost) + by mdbdb.mdb.gtwy.dcn (8.14.7/8.14.4/Submit) id 4AMGW1Ub084568; + Fri, 22 Nov 2024 11:32:01 -0500 +Date: Fri, 22 Nov 2024 11:32:01 -0500 +MIME-Version:1.0 +From:email@email.com.gov +To:email@email.com.gov +Message-Id: +Subject:Multiple Cases "Close Adversary Case" - AP - +Content-Type: text/html + +

***NOTE TO PUBLIC ACCESS USERS*** Judicial Conference of the United States policy permits attorneys of record and parties in a case (including pro se litigants) to receive one free electronic copy of all documents filed electronically, if receipt is required by law or directed by the filer. PACER access fees apply to all other users. To avoid later charges, download a copy of each document during this first viewing. However, if the referenced document is a transcript, the free copy and 30-page limit do not apply.

+ + + + +

U.S. Bankruptcy Court

+ +

District of Maryland

+Notice of Electronic Filing +
+
+
The following transaction was received from LastName, FirstName entered on 11/22/2024 at 11:32 AM EST and filed on 11/22/2024 + +
+ + + + + + + + + +
Case Name: +Laura J. Margulies, Chapter 7 Trustee for Botanica v. Rodas
Case Number:24-00016
WARNING: CASE CLOSED on 11/22/2024
Document Number: + +
+ + + + + + + + + +
Case Name: +Botanical Decorators, Inc.
Case Number:22-16223
Document Number: + +
+ + + + +

Docket Text: + +
+Adversary Case 0:24-ap-16 Closed. (Horning, Kelly) +

+ +

The following document(s) are associated with this transaction:

+ + +
+
+ + + + +
+24-00016 \ No newline at end of file diff --git a/tests/examples/pacer/nef/s3/ndb_multi_1.json b/tests/examples/pacer/nef/s3/ndb_multi_1.json new file mode 100644 index 000000000..f4bcc657e --- /dev/null +++ b/tests/examples/pacer/nef/s3/ndb_multi_1.json @@ -0,0 +1,54 @@ +{ + "appellate": false, + "contains_attachments": true, + "court_id": "ndb", + "dockets": [ + { + "case_name": "Jamieson CAPEX Fund, LLC v. Tyler", + "date_filed": null, + "docket_entries": [ + { + "date_filed": "2024-11-18", + "description": "Adversary case 24-07030. Complaint by Jamieson CAPEX Fund, LLC against Karen J. Tyler, The State of North Dakota. Fee Amount $350. Nature of Suits:(11 (Recovery of money/property - 542 turnover of property),13 (Recovery of money/property - 548 fraudulent transfer)), (VerStandig, Maurice)", + "document_number": "1", + "document_url": "https://ecf.ndb.uscourts.gov/doc1/13601640371?pdf_header=&magic_num=21856629&de_seq_num=3&caseid=45863", + "pacer_case_id": "45863", + "pacer_doc_id": "13601640371", + "pacer_magic_num": "21856629", + "pacer_seq_no": "3", + "short_description": "Complaint" + } + ], + "docket_number": "24-07030", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null + }, + { + "case_name": "Jamieson CAPEX Fund, LLC", + "date_filed": null, + "docket_entries": [ + { + "date_filed": "2024-11-18", + "description": "Adversary case 24-07030. Complaint by Jamieson CAPEX Fund, LLC against Karen J. Tyler, The State of North Dakota. Fee Amount $350. Nature of Suits:(11 (Recovery of money/property - 542 turnover of property),13 (Recovery of money/property - 548 fraudulent transfer)), (VerStandig, Maurice)", + "document_number": "35", + "document_url": "https://ecf.ndb.uscourts.gov/doc1/13601640372?pdf_header=&magic_num=51569304&de_seq_num=125&caseid=45779", + "pacer_case_id": "45779", + "pacer_doc_id": "13601640372", + "pacer_magic_num": "51569304", + "pacer_seq_no": "125", + "short_description": "Complaint" + } + ], + "docket_number": "24-30422", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": null, + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null + } + ], + "email_recipients": [] +} \ No newline at end of file diff --git a/tests/examples/pacer/nef/s3/ndb_multi_1.txt b/tests/examples/pacer/nef/s3/ndb_multi_1.txt new file mode 100644 index 000000000..96683dfa9 --- /dev/null +++ b/tests/examples/pacer/nef/s3/ndb_multi_1.txt @@ -0,0 +1,120 @@ +Return-Path: +Received: from icmecf201.gtwy.uscourts.gov (icmecf201.gtwy.uscourts.gov [63.241.40.204]) + by inbound-smtp.us-west-2.amazonaws.com with SMTP id nal5d7pb06bfmscatqfn1a5aamq1nldldeq2e681 + for email@email.com; + Mon, 18 Nov 2024 23:46:38 +0000 (UTC) +X-SES-Spam-Verdict: PASS +X-SES-Virus-Verdict: PASS +Received-SPF: pass (spfCheck: domain of ndb.uscourts.gov designates 63.241.40.204 as permitted sender) client-ip=63.241.40.204; envelope-from=email@email.com.gov; helo=icmecf201.gtwy.uscourts.gov; +Authentication-Results: amazonses.com; + spf=pass (spfCheck: domain of ndb.uscourts.gov designates 63.241.40.204 as permitted sender) client-ip=63.241.40.204; envelope-from=email@email.com.gov; helo=icmecf201.gtwy.uscourts.gov; + dkim=pass header.i=@uscourts.gov; + dmarc=pass header.from=ndb.uscourts.gov; +X-SES-RECEIPT: AEFBQUFBQUFBQUFFaUVBMmFzOCtWYUc4aEVRQ1JlOWxWejVrckNKajh5bFZjQUhpTE9pOW1icmZUVGh6N1Qrb1ZXWGUvL0ViQVIwZllNelZJN2VBM01mVkc0bkl4MjU1MWo1Umh5MXFxQW1xWFBCbEIzNE5wck94UnVXZjNmNzVUNElUeFQ1TDNadzVGQlJtWXJOSThUNmJvZy9rWm5KZ0dvbVhJdnJZN3FCLy9ZOS9tdWZMZkhES2c1emR1cGlNaFN4R05pazgxdGJZM0Rvd0J5OWMveVd0ZzB0RG1BWTY4YkQ2Qmx1Q1VENEluRHA0U1JER3JpTDZKZFBGYmtnaUhWL0dmeGJkTWQwUDVDRytxVlRCWC9iRWZiVGFqb3g3TE0wbHI4K0h3UjJhVkVQb25YWU5NaXc9PQ== +X-SES-DKIM-SIGNATURE: a=rsa-sha256; q=dns/txt; b=vpf9ukha8HZrcYY0L1vO296Z49rVbJtrGKzkfh/HRHvtzhFhnlKtbtw4eiVnSbjfm16RyWCiKVfeDpoPSqmq7+s/+Lsd6zSTLI/lNhHeljYlvl8fJP2LcfNs8ViLtH3Etc0mwc11wUqxiNkvBdi/ZYgDvJ1D3Hg45yyMFAQP4r0=; c=relaxed/simple; s=7v7vs6w47njt4pimodk5mmttbegzsi6n; d=amazonses.com; t=1731973599; v=1; bh=gOOLkCsm9unTQDA7D2M6BWBa/ZhG7nzXybiHDst4FZk=; h=From:To:Cc:Bcc:Subject:Date:Message-ID:MIME-Version:Content-Type:X-SES-RECEIPT; +DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; + d=uscourts.gov; i=@uscourts.gov; l=5499; q=dns/txt; + s=law1w; t=1731973598; x=1763509598; + h=date:x-authentication-warning:mime-version:from:to: + message-id:subject:content-type:x-sbrs:x-remote-ip; + bh=gOOLkCsm9unTQDA7D2M6BWBa/ZhG7nzXybiHDst4FZk=; + b=cfmDCdVwvyCuLp3O7/nMZlfOUSdEmTpAkv4jsTjn6Ncdu0O1xpz579bX + YD509sDJnSPKdOt6Qsjd4knHyhTCvb+rcndVnK6RdRYR2IFDkORrF1exi + bnuwq7EHMJIO3hBvSN9LlBobf1MNBM86A51g23ynKs0xFhj0ghch0YBN1 + INhG1yepcVY5G7ULn8VHDclB9zae679sa9B/lqN99Wux0g9idIVdzaIgX + o+KAYuaQDIq9QepYB4dTxdhGeuww3RBypKg4+Z0bhAlhCgz5ejJI85L+0 + ictbjFDm/SCF5mjGZ1Xp8itGd3/VZ1lLUHXG6tV4RX4d5/sKpk4bQZT7j + w==; +X-SBRS: None +X-REMOTE-IP: 156.119.56.242 +Received: from ndbdb.ndb.gtwy.dcn ([156.119.56.242]) + by icmecf201.gtwy.uscourts.gov with ESMTP; 18 Nov 2024 18:46:38 -0500 +Received: from ndbdb.ndb.gtwy.dcn (localhost.localdomain [127.0.0.1]) + by ndbdb.ndb.gtwy.dcn (8.14.7/8.14.7) with ESMTP id 4AINjrsn081266; + Mon, 18 Nov 2024 17:45:53 -0600 +Received: (from ecf_web@localhost) + by ndbdb.ndb.gtwy.dcn (8.14.7/8.14.4/Submit) id 4AINjYwM079086; + Mon, 18 Nov 2024 17:45:34 -0600 +Date: Mon, 18 Nov 2024 17:45:34 -0600 +X-Authentication-Warning: ndbdb.ndb.gtwy.dcn: ecf_web set sender to email@email.com.gov using -f +MIME-Version:1.0 +From:email@email.com.gov +To:email@email.com.gov +Message-Id: +Subject:24-07030 24-30422 Jamieson CAPEX Fund, LLC Complaint +Content-Type: text/html + +

***NOTE TO PUBLIC ACCESS USERS*** Judicial Conference of the United States policy permits attorneys of record and parties in a case (including pro se litigants) to receive one free electronic copy of all documents filed electronically, if receipt is required by law or directed by the filer. PACER access fees apply to all other users. To avoid later charges, download a copy of each document during this first viewing. However, if the referenced document is a transcript, the free copy and 30-page limit do not apply.

+ + + + +

U.S. Bankruptcy Court

+ +

District of North Dakota

+Notice of Electronic Filing +
+
+
The following transaction was received from LastName, FirstName entered on 11/18/2024 at 5:45 PM CST and filed on 11/18/2024 + +
+ + + + + + + + + +
Case Name: +Jamieson CAPEX Fund, LLC v. Tyler et al
Case Number:24-07030
Document Number: +1 +
+ + + + + + + + + +
Case Name: +Jamieson CAPEX Fund, LLC
Case Number:24-30422
Document Number: +35 +
+ + + + +

Docket Text: + +
+Adversary case 24-07030. Complaint by Jamieson CAPEX Fund, LLC against Karen J. Tyler, The State of North Dakota. Fee Amount $350. Nature of Suits:(11 (Recovery of money/property - 542 turnover of property),13 (Recovery of money/property - 548 fraudulent transfer)), (VerStandig, Maurice) +

+ +

The following document(s) are associated with this transaction:

+ +Document description:Main Document +
Original filename:24.11.18 CAPEX Complaint v3.0.pdf +
Electronic document Stamp: +
[STAMP bkecfStamp_ID=1065028669 [Date=11/18/2024] [FileNumber=1646554- +
0] [1e403078c62210958fac1c81dadea76c853f599358134c0c64cafac229d03309bc +
a918493a87a67550dbacc2c71d0a400b005456561ee028822179a0475833ec]] +
+Document description:Main Document +
Original filename:24.11.18 CAPEX Complaint v3.0.pdf +
Electronic document Stamp: +
[STAMP bkecfStamp_ID=1065028669 [Date=11/18/2024] [FileNumber=1646555- +
0] [7d73fa8234ea71beb20a685b8910e7bc061db8047186686acb2de981bd1fab9e6f +
100085aae6a6e563a8a8b4b93dd0bc5ebc778439f347b6e66e306c95b1d877]] +
+ +
+
+ + + + +
diff --git a/tests/examples/pacer/nef/s3/nhb_multi_1.json b/tests/examples/pacer/nef/s3/nhb_multi_1.json new file mode 100644 index 000000000..524b6355c --- /dev/null +++ b/tests/examples/pacer/nef/s3/nhb_multi_1.json @@ -0,0 +1,54 @@ +{ + "appellate": false, + "contains_attachments": true, + "court_id": "nhb", + "dockets": [ + { + "case_name": "Smith v. Earthlandscaping, Inc. dba Earthscape and Lawn", + "date_filed": null, + "docket_entries": [ + { + "date_filed": "2024-11-20", + "description": "Adversary case 24-01017. Complaint by Timothy P. Smith against Earthlandscaping, Inc. dba Earthscape and Lawn. Fee Amount $ 350. (Attachments: (1) Adversary Proceeding Cover Sheet) (12 (Recovery of money/property - 547 preference)) (13 (Recovery of money/property - 548 fraudulent transfer)) (LaMontagne, James)", + "document_number": "1", + "document_url": "https://ecf.nhb.uscourts.gov/doc1/11606678791?pdf_header=&magic_num=22314206&de_seq_num=3&caseid=120507", + "pacer_case_id": "120507", + "pacer_doc_id": "11606678791", + "pacer_magic_num": "22314206", + "pacer_seq_no": "3", + "short_description": "Complaint" + } + ], + "docket_number": "24-01017", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "MAF", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null + }, + { + "case_name": "Detail Design Builders, LLC", + "date_filed": null, + "docket_entries": [ + { + "date_filed": "2024-11-20", + "description": "Adversary case 24-01017. Complaint by Timothy P. Smith against Earthlandscaping, Inc. dba Earthscape and Lawn. Fee Amount $ 350. (Attachments: (1) Adversary Proceeding Cover Sheet) (12 (Recovery of money/property - 547 preference)) (13 (Recovery of money/property - 548 fraudulent transfer)) (LaMontagne, James)", + "document_number": "142", + "document_url": "https://ecf.nhb.uscourts.gov/doc1/11606678793?pdf_header=&magic_num=28049660&de_seq_num=581&caseid=118889", + "pacer_case_id": "118889", + "pacer_doc_id": "11606678793", + "pacer_magic_num": "28049660", + "pacer_seq_no": "581", + "short_description": "Complaint" + } + ], + "docket_number": "22-10577", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "MAF", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null + } + ], + "email_recipients": [] +} \ No newline at end of file diff --git a/tests/examples/pacer/nef/s3/nhb_multi_1.txt b/tests/examples/pacer/nef/s3/nhb_multi_1.txt new file mode 100644 index 000000000..7f61d97d2 --- /dev/null +++ b/tests/examples/pacer/nef/s3/nhb_multi_1.txt @@ -0,0 +1,133 @@ +Return-Path: +Received: from icmecf201.gtwy.uscourts.gov (icmecf201.gtwy.uscourts.gov [63.241.40.204]) + by inbound-smtp.us-west-2.amazonaws.com with SMTP id 0fof83p1vki2hicrbqrem2ardi6i5potd8d8jdo1 + for email@email.com; + Wed, 20 Nov 2024 15:29:31 +0000 (UTC) +X-SES-Spam-Verdict: PASS +X-SES-Virus-Verdict: PASS +Received-SPF: pass (spfCheck: domain of nhb.uscourts.gov designates 63.241.40.204 as permitted sender) client-ip=63.241.40.204; envelope-from=email@email.com.gov; helo=icmecf201.gtwy.uscourts.gov; +Authentication-Results: amazonses.com; + spf=pass (spfCheck: domain of nhb.uscourts.gov designates 63.241.40.204 as permitted sender) client-ip=63.241.40.204; envelope-from=email@email.com.gov; helo=icmecf201.gtwy.uscourts.gov; + dkim=pass header.i=@uscourts.gov; + dmarc=pass header.from=nhb.uscourts.gov; +X-SES-RECEIPT: AEFBQUFBQUFBQUFHQnM4eUNqUnhZTDQrMEJUcWF0RTVIQzFtcDhneGhGU1JRRjNOQkprTDFmTGs3dXhvTGduSFlGY3g1aGtqWmUzL1N5N1FRZ1U1aXc4dFRpT0lOcUdlcjdjVmN2aEs1OXVoQTRLTUUvUldTQUpyNHdsbFNNVTFmWGw2WWkrZXJaTVg4WUNHaExMYVFSa3dJRnlLQzY3SUxKVnB4MStpYWZjVnpmRnc1M1ZNNjdKUHNYL0RHaWZ0S1BwZFE1ZG15SHRwSitIeDBIUnJIYVVVQnZSc0pscXJBWlpNdU5oMmx2WUsrci9DUlBMTjZLbVFEVGQwWE1MYmZ3NSt1ejRqd2lUNmZaV2ZIYmFDeGRudXNmazRFemJoYmF5NHZ2YkliQk05clNFWWRKSGszN0E9PQ== +X-SES-DKIM-SIGNATURE: a=rsa-sha256; q=dns/txt; b=FZdgjQfSPVd3tOaDVCVyzypbokfy1buETgJ9GSGIsN2Lc71/CL2/eGPTH1AXyAuA9ieQsC3C0OEAlk1awWhEuUyrFifrcfKrhxmSRVDDL5VCuin9S225th3MmlDW0Gt5pL4kbu6tEx9aSOrgCqS1DGM+vKMtAD6r8tPCOY9fREs=; c=relaxed/simple; s=7v7vs6w47njt4pimodk5mmttbegzsi6n; d=amazonses.com; t=1732116572; v=1; bh=EL5vcF4aEBC+mJkncUafWJwPoWczu8okcTcn15yNlPw=; h=From:To:Cc:Bcc:Subject:Date:Message-ID:MIME-Version:Content-Type:X-SES-RECEIPT; +DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; + d=uscourts.gov; i=@uscourts.gov; l=10059; q=dns/txt; + s=law1w; t=1732116572; x=1763652572; + h=date:mime-version:from:to:message-id:subject: + content-type:x-sbrs:x-remote-ip; + bh=EL5vcF4aEBC+mJkncUafWJwPoWczu8okcTcn15yNlPw=; + b=V0mIrNyo1QecSOfbcvPx7dyclJuEN2SNIBbRdmkiTnqsZ7h0g0RWuv9b + +Gm1VWpOqRzqQuc2rgqxmbX1BG++FQ11g+WqJ7VAKNQ3dE7cnSGAC9FQ/ + RZHvXH4gXY9RxuetYb4CHxpems/tplTMhjs/xFfFJRCIppc0wi2LAWg0V + /n6RKS0EIvJNydiN1qhCTKJuz4T3lk+eHUeOjBlzS0Pd9zCWAeTVbLqlY + zBm1XEv1aJDrV0kpoUJYQ8Z98hPqM750/110Cn0IPazqnSTm2yhFXUVUC + RNHcr9bnKxrYiazL4J/oCu8G59NA3wwoOxWmXD8hlDkiRzTBBzGy9cPk+ + Q==; +X-SBRS: None +X-REMOTE-IP: 156.119.190.55 +Received: from nhbdb.nhb.gtwy.dcn ([156.119.190.55]) + by icmecf201.gtwy.uscourts.gov with ESMTP; 20 Nov 2024 10:29:31 -0500 +Received: from nhbdb.nhb.gtwy.dcn (localhost.localdomain [127.0.0.1]) + by nhbdb.nhb.gtwy.dcn (8.14.7/8.14.7) with ESMTP id 4AKFSf2t041745 + for ; Wed, 20 Nov 2024 10:28:42 -0500 +Received: (from ecf_web@localhost) + by nhbdb.nhb.gtwy.dcn (8.14.7/8.14.4/Submit) id 4AKFSdTV041624; + Wed, 20 Nov 2024 10:28:39 -0500 +Date: Wed, 20 Nov 2024 10:28:39 -0500 +MIME-Version:1.0 +From:email@email.com.gov +To:email@email.com +Message-Id: +Subject:24-01017-MAF Chapter 7 Detail Design Builders, LLC Complaint +Content-Type: text/html + +

***NOTE TO PUBLIC ACCESS USERS*** Judicial Conference of the United States policy permits attorneys of record and parties in a case (including pro se litigants) to receive one free electronic copy of all documents filed electronically, if receipt is required by law or directed by the filer. PACER access fees apply to all other users. To avoid later charges, download a copy of each document during this first viewing. However, if the referenced document is a transcript, the free copy and 30-page limit do not apply.

+ + + + +

U.S. Bankruptcy Court

+ +

District of New Hampshire Live Database

+Notice of Electronic Filing +
+
+
The following transaction was received from LastName, FirstName entered on 11/20/2024 at 10:28 AM EST and filed on 11/20/2024 + +
+ + + + + + + + + +
Case Name: +Smith v. Earthlandscaping, Inc. dba Earthscape and Lawn
Case Number:24-01017-MAF
Document Number: +1 +
+ + + + + + + + + +
Case Name: +Detail Design Builders, LLC
Case Number:22-10577-MAF
Document Number: +142 +
+ + + + +

Docket Text: + +
+Adversary case 24-01017. Complaint by Timothy P. Smith against Earthlandscaping, Inc. dba Earthscape and Lawn. Fee Amount $ 350. (Attachments: # (1) Adversary Proceeding Cover Sheet) (12 (Recovery of money/property - 547 preference)) (13 (Recovery of money/property - 548 fraudulent transfer)) (LaMontagne, James) +

+ +

The following document(s) are associated with this transaction:

+ +Document description:Main Document +
Original filename:S2825882.pdf +
Electronic document Stamp: +
[STAMP bkecfStamp_ID=988526710 [Date=11/20/2024] [FileNumber=6666626-0 +
] [45326dd2d0e635e604aafcb07ace8cbc4fe4b9b9cb4161b96a880df972b6a16d6b5 +
a8e4de9ea1f8ef666de6db6425344ad0599f8b76b347d05755b976ce339de]] +
+Document description:Adversary Proceeding Cover Sheet +
Original filename:C:\fakepath\S2827276.PDF +
Electronic document Stamp: +
[STAMP bkecfStamp_ID=988526710 [Date=11/20/2024] [FileNumber=6666626-1 +
] [293a0a2a38a8992b7677fa73b4647edbfaf280025ce2a33f7750b0fcc7241188c95 +
99bd48cd62e4a56c1a99dbc9058b210dd02b8c13384884f4459bf20f0bfd9]] +
+Document description:Main Document +
Original filename:S2825882.pdf +
Electronic document Stamp: +
[STAMP bkecfStamp_ID=988526710 [Date=11/20/2024] [FileNumber=6666627-0 +
] [4e68386c219df26e03c13962a35fb7175557f71c68724e36b684b54cc70bc43f2aa +
2b982f64f8ab44db939f32573808af1bca621809aad91f81314a7af4a4ce5]] +
+Document description:Adversary Proceeding Cover Sheet +
Original filename:C:\fakepath\S2827276.PDF +
Electronic document Stamp: +
[STAMP bkecfStamp_ID=988526710 [Date=11/20/2024] [FileNumber=6666627-1 +
] [3c43fdf363a8cb93d2b355623fd2e458141229e16fe8e186ab230618f1d160eb5aa +
e1c6ebea4252bdc91bb4cc20b4e2b1c3631d7281505a2459e6202b4ff2335]] +
+ +
+
+ + + + +
diff --git a/tests/examples/pacer/nef/s3/nhb_multi_2.json b/tests/examples/pacer/nef/s3/nhb_multi_2.json new file mode 100644 index 000000000..2dfbcc627 --- /dev/null +++ b/tests/examples/pacer/nef/s3/nhb_multi_2.json @@ -0,0 +1,54 @@ +{ + "appellate": false, + "contains_attachments": true, + "court_id": "nhb", + "dockets": [ + { + "case_name": "Marshall v. Hicks", + "date_filed": null, + "docket_entries": [ + { + "date_filed": "2024-11-27", + "description": "Adversary case 24-01023. Complaint by Steven P. & Erica A. Marshall against Tricia L Hicks. Fee Amount $ 350. (Attachments: (1) Main Document (2) Exhibit A - Permanent Injunction Order (3) Exhibit B - Preliminary Order Granting Preliminary Injunction (4) Exhibit C - Order Re Motion on Attorneys fees) (68 (Dischargeability - 523(a)(6), willful and malicious injury)) (65 (Dischargeability - other)) (Dahar, Eleanor)", + "document_number": "1", + "document_url": "https://ecf.nhb.uscourts.gov/doc1/11606680605?pdf_header=&magic_num=0&de_seq_num=3&caseid=120535", + "pacer_case_id": "120535", + "pacer_doc_id": "11606680605", + "pacer_magic_num": "0", + "pacer_seq_no": "3", + "short_description": "Complaint" + } + ], + "docket_number": "24-01023", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "KB", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null + }, + { + "case_name": "Tricia L Hicks", + "date_filed": null, + "docket_entries": [ + { + "date_filed": "2024-11-27", + "description": "Adversary case 24-01023. Complaint by Steven P. & Erica A. Marshall against Tricia L Hicks. Fee Amount $ 350. (Attachments: (1) Main Document (2) Exhibit A - Permanent Injunction Order (3) Exhibit B - Preliminary Order Granting Preliminary Injunction (4) Exhibit C - Order Re Motion on Attorneys fees) (68 (Dischargeability - 523(a)(6), willful and malicious injury)) (65 (Dischargeability - other)) (Dahar, Eleanor)", + "document_number": "31", + "document_url": "https://ecf.nhb.uscourts.gov/doc1/11606680610?pdf_header=&magic_num=0&de_seq_num=109&caseid=120282", + "pacer_case_id": "120282", + "pacer_doc_id": "11606680610", + "pacer_magic_num": "0", + "pacer_seq_no": "109", + "short_description": "Complaint" + } + ], + "docket_number": "24-10563", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "KB", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null + } + ], + "email_recipients": [] +} \ No newline at end of file diff --git a/tests/examples/pacer/nef/s3/nhb_multi_2.txt b/tests/examples/pacer/nef/s3/nhb_multi_2.txt new file mode 100644 index 000000000..f3772c61b --- /dev/null +++ b/tests/examples/pacer/nef/s3/nhb_multi_2.txt @@ -0,0 +1,175 @@ +Return-Path: +Received: from icmecf202.gtwy.uscourts.gov (icmecf202.gtwy.uscourts.gov [63.241.40.205]) + by inbound-smtp.us-west-2.amazonaws.com with SMTP id kk5ojak1fhhhtv2f16h9ctseqgqpkuti8dou5n01 + for email@email.com; + Wed, 27 Nov 2024 14:25:02 +0000 (UTC) +X-SES-Spam-Verdict: PASS +X-SES-Virus-Verdict: PASS +Received-SPF: pass (spfCheck: domain of nhb.uscourts.gov designates 63.241.40.205 as permitted sender) client-ip=63.241.40.205; envelope-from=email@email.com.gov; helo=icmecf202.gtwy.uscourts.gov; +Authentication-Results: amazonses.com; + spf=pass (spfCheck: domain of nhb.uscourts.gov designates 63.241.40.205 as permitted sender) client-ip=63.241.40.205; envelope-from=email@email.com.gov; helo=icmecf202.gtwy.uscourts.gov; + dkim=pass header.i=@uscourts.gov; + dmarc=pass header.from=nhb.uscourts.gov; +X-SES-RECEIPT: AEFBQUFBQUFBQUFHSnJ5U1lPNE1nSVJkakI1V1pvNG1IM2FVQjA0ck1FSUY0OExCeHNuajhjSlRVdGxYQkVBVUtZQWt4YXRjZlIxRklCMWdqbStsY0dLMFl4RlhsbEJBakJwK3NxNjRRejFpbE9DT3dhN1dsZ0tvZlBmQ1JRNEFVbXkzejRvdmJtSzc2UVFOSDVmVml5VVpRY09rejVWalBVSDNFWHlCZlAzbFg5Ym5Fb0hxTWpndDhsbVNjSTlNNWMycGJpbFZEZXNhMFpvbjF5MDBXakJzanpzeUh3K2Y0aFJrTjVLL3E0c0xUeTM3cG1jOUFGcmZ2Y0tscEJzbFhUTVBueVhLOC9XbkRuTUxzZVQ3UVlkV0dhNGNwcFpJV3ZnOU8xY2ZSeHIwTk5rUm5rMXRpTGc9PQ== +X-SES-DKIM-SIGNATURE: a=rsa-sha256; q=dns/txt; b=DYUXyKghX0xFNv6/JmSrAGlsJ8xPslF9Zxtc9bT/K9kWoF6oH0dZkWS49hVHnXkFNBBfk0sNQGvry7Vq96wvwHSr6XTv/wM+bF/BKF3T7/vMC2WjDNot2ttSysWzi6lwCUvZ5JdTFgIMepio+0LEK19fywV2tMGZQHWCFqQ7IiA=; c=relaxed/simple; s=7v7vs6w47njt4pimodk5mmttbegzsi6n; d=amazonses.com; t=1732717503; v=1; bh=ZB8eEd260gO4QIEOI1wSOpq6RDCPza4OT2JWEoq8u8o=; h=From:To:Cc:Bcc:Subject:Date:Message-ID:MIME-Version:Content-Type:X-SES-RECEIPT; +DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; + d=uscourts.gov; i=@uscourts.gov; l=8587; q=dns/txt; + s=law1w; t=1732717502; x=1764253502; + h=date:mime-version:from:to:message-id:subject: + content-type:x-sbrs:x-remote-ip; + bh=ZB8eEd260gO4QIEOI1wSOpq6RDCPza4OT2JWEoq8u8o=; + b=WZqAdQZJZehXusNr575XK+sKi4E611ke1uto5pb2dkdYD9qtPIvg2xTz + W9pD6UDsDnJ0atX4r6nsWDpG2f5Gy96BsKPc36HEhnxD+AY/A06tog1bi + Si8sXW3mS6eLr1JHffPdRt8UfdiPyzgmRJOzmS310eySkUVuRULsdpS27 + RC8dgy2t38dlJWPx8p7b3b6v6siWhmvfoqlWt7S+kMfOfXHULW3X375m3 + 5gRvp+QZw9oSUJ6kp3/2LB3EeT78iPQubSY6Fvv9+b/cGT5JJanUqfEGR + akoacszBsLgbQCnFhhIl3kPLNSGJQpbXIO1xXBgp4GrSENX+RMqEkCRTp + w==; +X-SBRS: None +X-REMOTE-IP: 156.119.190.55 +Received: from nhbdb.nhb.gtwy.dcn ([156.119.190.55]) + by icmecf202.gtwy.uscourts.gov with ESMTP; 27 Nov 2024 09:25:02 -0500 +Received: from nhbdb.nhb.gtwy.dcn (localhost.localdomain [127.0.0.1]) + by nhbdb.nhb.gtwy.dcn (8.14.7/8.14.7) with ESMTP id 4AREOGMs020770 + for ; Wed, 27 Nov 2024 09:24:16 -0500 +Received: (from ecf_web@localhost) + by nhbdb.nhb.gtwy.dcn (8.14.7/8.14.4/Submit) id 4ARENcJ8020303; + Wed, 27 Nov 2024 09:23:38 -0500 +Date: Wed, 27 Nov 2024 09:23:38 -0500 +MIME-Version:1.0 +From:email@email.com.gov +To:email@email.com +Message-Id: +Subject:24-01023-KB Chapter 13 Tricia L Hicks Complaint +Content-Type: text/html + +

***NOTE TO PUBLIC ACCESS USERS*** Judicial Conference of the United States policy permits attorneys of record and parties in a case (including pro se litigants) to receive one free electronic copy of all documents filed electronically, if receipt is required by law or directed by the filer. PACER access fees apply to all other users. To avoid later charges, download a copy of each document during this first viewing. However, if the referenced document is a transcript, the free copy and 30-page limit do not apply.

+ + + + +

U.S. Bankruptcy Court

+ +

District of New Hampshire Live Database

+Notice of Electronic Filing +
+
+
The following transaction was received from LastName, FirstName entered on 11/27/2024 at 9:23 AM EST and filed on 11/27/2024 + +
+ + + + + + + + + +
Case Name: +Marshall v. Hicks
Case Number:24-01023-KB
Document Number: +1 +
+ + + + + + + + + +
Case Name: +Tricia L Hicks
Case Number:24-10563-KB
Document Number: +31 +
+ + + + +

Docket Text: + +
+Adversary case 24-01023. Complaint by Steven P. & Erica A. Marshall against Tricia L Hicks. Fee Amount $ 350. (Attachments: # (1) Main Document # (2) Exhibit A - Permanent Injunction Order # (3) Exhibit B - Preliminary Order Granting Preliminary Injunction # (4) Exhibit C - Order Re Motion on Attorneys fees) (68 (Dischargeability - 523(a)(6), willful and malicious injury)) (65 (Dischargeability - other)) (Dahar, Eleanor) +

+ +

The following document(s) are associated with this transaction:

+ +Document description:Main Document +
Original filename:adversary cover sheet - completed.pdf +
Electronic document Stamp: +
[STAMP bkecfStamp_ID=988526710 [Date=11/27/2024] [FileNumber=6668320-0 +
] [191efbccaede67c19a3aae9d3ab01b7fc5d7f9102270977aea4250603007b8f9edd +
4cab6af388d075a375f20d7168d30849a4853b49b4f3d2f55f3fe2a7be714]] +
+Document description:Main Document +
Original filename:C:\fakepath\objection to discharge.pdf +
Electronic document Stamp: +
[STAMP bkecfStamp_ID=988526710 [Date=11/27/2024] [FileNumber=6668320-1 +
] [28d862fd694777b82e4f87a5956798b0a1c921f193e04b7c4eddbfc736a80f102d4 +
bd5dfc9e59b11e69c8bbf807c292159cd7fe0f7b0690d7c0a6bfd19d7c33a]] +
+Document description:Exhibit A - Permanent Injunction Order +
Original filename:C:\fakepath\Exhibit A - Permanent injunction - Order on Merits (12.05.2022).pdf +
Electronic document Stamp: +
[STAMP bkecfStamp_ID=988526710 [Date=11/27/2024] [FileNumber=6668320-2 +
] [700af93f74321e95446bee26ed316d596a892952c035ab093ad0025d238edb3ab38 +
50b81ccb9ebe3cf44ccdc51401fd57d4b4684c27e9309956a6cc7a6838959]] +
+Document description:Exhibit B - Preliminary Order Granting Preliminary Injunction +
Original filename:C:\fakepath\Exhibit B - Preliminary Order granting Preliminary Injunctive Relief.pdf +
Electronic document Stamp: +
[STAMP bkecfStamp_ID=988526710 [Date=11/27/2024] [FileNumber=6668320-3 +
] [6fc26a77ba659b4d4f6152fc04efc69bbbeb7ea3e642e9a074a3790431640919c87 +
2b91ec919ffa7761c84e5704affdaf20ac3f2c59383c66f804724081e7f62]] +
+Document description:Exhibit C - Order Re Motion on Attorneys fees +
Original filename:C:\fakepath\Exhibit C - Order re Motion on Attorneys' Fees and Costs.pdf +
Electronic document Stamp: +
[STAMP bkecfStamp_ID=988526710 [Date=11/27/2024] [FileNumber=6668320-4 +
] [4a18f07c267c46b0cbf3b5cb7fd8a471051cad72878c80c3e3cedcde8bdbb4f13bd +
909f81931046a4f68c715a76b2b092daf737a900c69ffeb0f1ffbd4ec0087]] +
+Document description:Main Document +
Original filename:adversary cover sheet - completed.pdf +
Electronic document Stamp: +
[STAMP bkecfStamp_ID=988526710 [Date=11/27/2024] [FileNumber=6668321-0 +
] [6fc9f39f8153dd3be18d565afe04e1fcc537f42e1cb6ed748fe919d267107568527 +
ee81ee5f3f6e908b44b2a42d8bd5ad87394b4672d97b20778694bf33c6fc0]] +
+Document description:Main Document +
Original filename:C:\fakepath\objection to discharge.pdf +
Electronic document Stamp: +
[STAMP bkecfStamp_ID=988526710 [Date=11/27/2024] [FileNumber=6668321-1 +
] [4db5adf50250dc86676e339205dfd30518605778e3df58e0d1d946891af0867a6a2 +
1eb1a35e09771e7b9e034b4f9bc1df3b25fa18c30a81e174d4c77a91abbf7]] +
+Document description:Exhibit A - Permanent Injunction Order +
Original filename:C:\fakepath\Exhibit A - Permanent injunction - Order on Merits (12.05.2022).pdf +
Electronic document Stamp: +
[STAMP bkecfStamp_ID=988526710 [Date=11/27/2024] [FileNumber=6668321-2 +
] [2c339c897fbf12021f5f41c8d082e6375756bc09c6357064ad8bff4b4307567b8f2 +
c794db627ddc106328112002a5f48bd669bfe13556e36268dced2882e85a1]] +
+Document description:Exhibit B - Preliminary Order Granting Preliminary Injunction +
Original filename:C:\fakepath\Exhibit B - Preliminary Order granting Preliminary Injunctive Relief.pdf +
Electronic document Stamp: +
[STAMP bkecfStamp_ID=988526710 [Date=11/27/2024] [FileNumber=6668321-3 +
] [57392f79f93e9dd054e15b69669038f2f51ce936c0c7b993b836d06c7a392c31e1e +
4897f2131a0e6bad0ae6ba572c004af5dafa549a2da8776b75d52fd027e6d]] +
+Document description:Exhibit C - Order Re Motion on Attorneys fees +
Original filename:C:\fakepath\Exhibit C - Order re Motion on Attorneys' Fees and Costs.pdf +
Electronic document Stamp: +
[STAMP bkecfStamp_ID=988526710 [Date=11/27/2024] [FileNumber=6668321-4 +
] [536fe3cb23f141e8adbfe0a0ca61afb7e4a28e161fc7c8bcd8922ac36e4c31f63dc +
5d6891b12279118b533f416b50115b110df32d6ab9f08986607e725ff6fc3]] +
+ +
+
+ + + + +
diff --git a/tests/examples/pacer/nef/s3/paeb_1.json b/tests/examples/pacer/nef/s3/paeb_1.json index 12f4b1fdb..df8075a06 100644 --- a/tests/examples/pacer/nef/s3/paeb_1.json +++ b/tests/examples/pacer/nef/s3/paeb_1.json @@ -4,7 +4,7 @@ "court_id": "paeb", "dockets": [ { - "case_name": "Br Cun", + "case_name": "Brittany Cunningham", "date_filed": null, "docket_entries": [ { diff --git a/tests/examples/pacer/nef/s3/paeb_1.txt b/tests/examples/pacer/nef/s3/paeb_1.txt index 5a8ef80e4..c4d66d2aa 100644 --- a/tests/examples/pacer/nef/s3/paeb_1.txt +++ b/tests/examples/pacer/nef/s3/paeb_1.txt @@ -27,7 +27,7 @@ MIME-Version:1.0 From:BKECF_LiveDB@paeb.uscourts.gov To:Courtmail@paeb.uscourts.gov Message-Id:<31788189@paeb.uscourts.gov> -Subject:Ch-7 23-13129-amc BNC Certificate of Mailing - Financial Management Course Certificate - FirstName LastName +Subject:Ch-7 23-13129-amc BNC Certificate of Mailing - Financial Management Course Certificate - Brittany Cunningha Content-Type: text/html

***NOTE TO PUBLIC ACCESS USERS*** Judicial Conference of the United States policy permits attorneys of record and parties in a case (including pro se litigants) to receive one free electronic copy of all documents filed electronically, if receipt is required by law or directed by the filer. PACER access fees apply to all other users. To avoid later charges, download a copy of each document during this first viewing. However, if the referenced document is a transcript, the free copy and 30-page limit do not apply.

@@ -49,7 +49,7 @@ Notice of Electronic Filing + diff --git a/tests/examples/pacer/nef/s3/paeb_2.json b/tests/examples/pacer/nef/s3/paeb_2.json index 99716749a..b38c8487e 100644 --- a/tests/examples/pacer/nef/s3/paeb_2.json +++ b/tests/examples/pacer/nef/s3/paeb_2.json @@ -16,7 +16,7 @@ "pacer_doc_id": null, "pacer_magic_num": null, "pacer_seq_no": null, - "short_description": "CHAP - Hearing Continued" + "short_description": "CHAP - Hearing Continued (Bk Other)" } ], "docket_number": "23-11723", diff --git a/tests/examples/pacer/nef/s3/paeb_3.json b/tests/examples/pacer/nef/s3/paeb_multi_1.json similarity index 67% rename from tests/examples/pacer/nef/s3/paeb_3.json rename to tests/examples/pacer/nef/s3/paeb_multi_1.json index 7f7ab72d5..a262fcf87 100644 --- a/tests/examples/pacer/nef/s3/paeb_3.json +++ b/tests/examples/pacer/nef/s3/paeb_multi_1.json @@ -16,7 +16,7 @@ "pacer_doc_id": null, "pacer_magic_num": null, "pacer_seq_no": null, - "short_description": "" + "short_description": "Close Adversary Case" } ], "docket_number": "23-00075", @@ -39,7 +39,7 @@ "pacer_doc_id": null, "pacer_magic_num": null, "pacer_seq_no": null, - "short_description": "" + "short_description": "Close Adversary Case" } ], "docket_number": "23-13237", @@ -50,24 +50,5 @@ "federal_dn_office_code": null } ], - "email_recipients": [ - { - "email_addresses": [ - "example@domain.com", - "example@domain.com;example@domain.com;example@domain.com;example@domain.com;example@domain.com;example@domain.com", - "example@domain.com", - "example@domain.com;example@domain.com;example@domain.com;example@domain.com;example@domain.com" - ], - "name": "" - }, - { - "email_addresses": [ - "example@domain.com", - "example@domain.com", - "example@domain.com;example@domain.com;example@domain.com;example@domain.com;example@domain.com;example@domain.com", - "USTPRegion03.PH.ECF@usdoj.gov" - ], - "name": "4510A Adams Circle Bensalem, PA 19020" - } - ] + "email_recipients": [] } \ No newline at end of file diff --git a/tests/examples/pacer/nef/s3/paeb_3.txt b/tests/examples/pacer/nef/s3/paeb_multi_1.txt similarity index 62% rename from tests/examples/pacer/nef/s3/paeb_3.txt rename to tests/examples/pacer/nef/s3/paeb_multi_1.txt index 009c20465..9febc94ad 100644 --- a/tests/examples/pacer/nef/s3/paeb_3.txt +++ b/tests/examples/pacer/nef/s3/paeb_multi_1.txt @@ -1,13 +1,13 @@ -Return-Path: +Return-Path: Received: from icmecf101.gtwy.uscourts.gov (icmecf101.gtwy.uscourts.gov [199.107.16.200]) by inbound-smtp.us-west-2.amazonaws.com with SMTP id clofkr5crceoju0ek1t6jh162fp47ah3bmr2a6o1 - for c@recap.email; + for email@email.com; Thu, 01 Feb 2024 20:00:46 +0000 (UTC) X-SES-Spam-Verdict: PASS X-SES-Virus-Verdict: PASS -Received-SPF: pass (spfCheck: domain of paeb.uscourts.gov designates 199.107.16.200 as permitted sender) client-ip=199.107.16.200; envelope-from=BKECF_LiveDB@paeb.uscourts.gov; helo=icmecf101.gtwy.uscourts.gov; +Received-SPF: pass (spfCheck: domain of paeb.uscourts.gov designates 199.107.16.200 as permitted sender) client-ip=199.107.16.200; envelope-from=email@email.com.gov; helo=icmecf101.gtwy.uscourts.gov; Authentication-Results: amazonses.com; - spf=pass (spfCheck: domain of paeb.uscourts.gov designates 199.107.16.200 as permitted sender) client-ip=199.107.16.200; envelope-from=BKECF_LiveDB@paeb.uscourts.gov; helo=icmecf101.gtwy.uscourts.gov; + spf=pass (spfCheck: domain of paeb.uscourts.gov designates 199.107.16.200 as permitted sender) client-ip=199.107.16.200; envelope-from=email@email.com.gov; helo=icmecf101.gtwy.uscourts.gov; dmarc=none header.from=paeb.uscourts.gov; X-SES-RECEIPT: AEFBQUFBQUFBQUFFNzh4QzY2VDFGTllHc3o4MzJpSyswcE9TYlJwVHF1RDZFbmczV1YzdTVLTDZHeHZiVUlIVHI2WXZLd0RjSkJjY2drL3VNYnpLQzlVeFpoRTZSUUVoTmxEMDMzd0JWbllJRFp4Wml4NkZiQzVXdktobFE2RS80VlhrSmVQb2llUVh1bGtVTjVDR2pMVE5JcXl6ZDNmak1ueGNKeGNiSmRrQWRPWWZvdDRaVDJ5bTZ4bjhlUlhPYTBCdHpGdkwxamF0Y0I1bTVWQ3VKaVRmSmxMRXJ2MEhtMFgxcW9jWlM0R3FtL0Q2UDBhRWRHbmMyeGR3ajhPbGJadE9PMWlseERnWTU2QW9rSzdJTHpyRjY2ZXE0SzEyck1wcjBZcDd1TUwyY3lWSWY5Ym4rUTc3d09SSWswNkxTU2s5aXFnYW1FVVk9 X-SES-DKIM-SIGNATURE: a=rsa-sha256; q=dns/txt; b=fVGG8ZUQJv0zsk8KeQIXbAewV5oXtxOQdxNeMKyLHuUYVvNI+zGOl0hlHfQjAfw0ue+VI6xuhggrQT+Nu5EfE4GDkGCvrKkdR5gwzIOIeK8+aR9aXl4PVkJLeeJRPM6dKffdAJy0NB3nHfhhSGdU1XuXlEjTm0/ePofnyRP9B0Q=; c=relaxed/simple; s=hsbnp7p3ensaochzwyq5wwmceodymuwv; d=amazonses.com; t=1706817647; v=1; bh=oRdaJ5s9YC1C5Ty8XUuD4CaI4EMuOD2LlxsEcEfY2Uw=; h=From:To:Cc:Bcc:Subject:Date:Message-ID:MIME-Version:Content-Type:X-SES-RECEIPT; @@ -22,11 +22,11 @@ Received: (from ecf_web@localhost) by paebdb.paeb.gtwy.dcn (8.14.7/8.14.4/Submit) id 411K0RBC075196; Thu, 1 Feb 2024 15:00:27 -0500 Date: Thu, 1 Feb 2024 15:00:27 -0500 -X-Authentication-Warning: paebdb.paeb.gtwy.dcn: ecf_web set sender to BKECF_LiveDB@paeb.uscourts.gov using -f +X-Authentication-Warning: paebdb.paeb.gtwy.dcn: ecf_web set sender to email@email.com.gov using -f MIME-Version:1.0 -From:BKECF_LiveDB@paeb.uscourts.gov -To:Courtmail@paeb.uscourts.gov -Message-Id:<31790064@paeb.uscourts.gov> +From:email@email.com.gov +To:email@email.com.gov +Message-Id: Subject:Ch-11 23-13237-pmm Close Adversary Case - Tri-State Paper, I Content-Type: text/html @@ -41,7 +41,7 @@ Content-Type: text/html Notice of Electronic Filing
-
The following transaction was received from R., Yvette entered on 2/1/2024 at 3:00 PM EST and filed on 2/1/2024 +
The following transaction was received from LastName, FirstName entered on 2/1/2024 at 3:00 PM EST and filed on 2/1/2024
@@ -90,88 +90,4 @@ Adversary Case 2:23-ap-75 Terminated for Statistical Purposes. (R., LastName)
-23-00075-pmm Notice will be electronically mailed to: - - -
- -
FIRSTNAME LASTNAME on behalf of Plaintiff Company, Inc. -
example@domain.com, example@domain.com;example@domain.com;example@domain.com;example@domain.com;example@domain.com;example@domain.com -
-
FIRSTNAME LASTNAME on behalf of Plaintiff Company, Inc. -
example@domain.com, example@domain.com;example@domain.com;example@domain.com;example@domain.com;example@domain.com -
- -
- -23-00075-pmm Notice will not be electronically mailed to: - - -
- -
Foodarama Caterers Inc. -
4510A Adams Circle -
Bensalem, PA 19020 -
- -
- - - - -
-
- - - - -
-23-13237-pmm Notice will be electronically mailed to: - - -
- -
DAVE P. ADAMS on behalf of U.S. Trustee United States Trustee -
example@domain.com -
-
MICHAEL I. ASSAD on behalf of Creditor Citizens Bank, N.A., successor by merger to Citizens Bank of Pennsylvania -
example@domain.com, example@domain.com;example@domain.com;example@domain.com;example@domain.com;example@domain.com;example@domain.com -
- -
United States Trustee -
USTPRegion03.PH.ECF@usdoj.gov -
- -
- -23-13237-pmm Notice will not be electronically mailed to: - - -
- -
Law Company, P.C. -
Deleted -
Suite 900 -
Philadelphia, PA 19102 -
-
First Name -
Deleted -
Philadelphia, PA 19116-3850 -
-
Realty Associates, Inc. -
Deleted -
Ardmore, PA 19003 -
-
Adjustment Company, Inc. -
c/o FirstNane LastName -
Deleted -
Blue Bell, PA 19422 -
- -
- - - - -
-
\ No newline at end of file +23-00075-pmm \ No newline at end of file diff --git a/tests/examples/pacer/nef/s3/paeb_multi_3.json b/tests/examples/pacer/nef/s3/paeb_multi_3.json new file mode 100644 index 000000000..55473092a --- /dev/null +++ b/tests/examples/pacer/nef/s3/paeb_multi_3.json @@ -0,0 +1,54 @@ +{ + "appellate": false, + "contains_attachments": false, + "court_id": "paeb", + "dockets": [ + { + "case_name": "Wharton v. Prosper Marketplace Inc.", + "date_filed": null, + "docket_entries": [ + { + "date_filed": "2024-12-05", + "description": "Adversary Case 2:24-ap-78 Terminated for Statistical Purposes. (G., Jeanette)", + "document_number": null, + "document_url": null, + "pacer_case_id": "512791", + "pacer_doc_id": null, + "pacer_magic_num": null, + "pacer_seq_no": null, + "short_description": "Close Adversary Case" + } + ], + "docket_number": "24-00078", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "pmm", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null + }, + { + "case_name": "Erik A. Wharton and Shari L. Merton", + "date_filed": null, + "docket_entries": [ + { + "date_filed": "2024-12-05", + "description": "Adversary Case 2:24-ap-78 Terminated for Statistical Purposes. (G., Jeanette)", + "document_number": null, + "document_url": null, + "pacer_case_id": "509857", + "pacer_doc_id": null, + "pacer_magic_num": null, + "pacer_seq_no": null, + "short_description": "Close Adversary Case" + } + ], + "docket_number": "23-12910", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "pmm", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null + } + ], + "email_recipients": [] +} \ No newline at end of file diff --git a/tests/examples/pacer/nef/s3/paeb_multi_3.txt b/tests/examples/pacer/nef/s3/paeb_multi_3.txt new file mode 100644 index 000000000..17830bf88 --- /dev/null +++ b/tests/examples/pacer/nef/s3/paeb_multi_3.txt @@ -0,0 +1,106 @@ +Return-Path: +Received: from icmecf102.gtwy.uscourts.gov (icmecf102.gtwy.uscourts.gov [199.107.16.202]) + by inbound-smtp.us-west-2.amazonaws.com with SMTP id suhdi52hcsv1703uc1vn3vdvoch8r5a75ttejlo1 + for email@email.com; + Thu, 05 Dec 2024 13:54:09 +0000 (UTC) +X-SES-Spam-Verdict: PASS +X-SES-Virus-Verdict: PASS +Received-SPF: pass (spfCheck: domain of paeb.uscourts.gov designates 199.107.16.202 as permitted sender) client-ip=199.107.16.202; envelope-from=email@email.com.gov; helo=icmecf102.gtwy.uscourts.gov; +Authentication-Results: amazonses.com; + spf=pass (spfCheck: domain of paeb.uscourts.gov designates 199.107.16.202 as permitted sender) client-ip=199.107.16.202; envelope-from=email@email.com.gov; helo=icmecf102.gtwy.uscourts.gov; + dkim=pass header.i=@uscourts.gov; + dmarc=pass header.from=paeb.uscourts.gov; +X-SES-RECEIPT: AEFBQUFBQUFBQUFGYktraFRMTkFpUWZsVlJSMUlGeFNZeEFwRjhBRUJTeHBSUTNndnZNeWhvOC9yb2VSM3hQdUdyVzVRY2lUQU83bXlMUURpaEYvWEhtVVhodzVHQi9SZ29DRjNKaFpmSmFOQmZDZDVYeCsza2huVlczZUZPNGlyR2EwODc3dFBNSFVnZ3lvNlo4c3NrK1JWK2pEQnRQUS9iN252UFF4ZXU2UW0rbkhab1RBRUVzZlZEWVlDNkU5YjVieEgwU3lvc3ZyamxHYW0xY0Z3MllZbk84ZTRWTUZ0L29ZMHZ1ZUk5QVUzYUQyVGsySVN0N0ZNd3MrRzJvelQ3YWlxenZSQ0xKSGhGZmd2bS9nWDRhS0hRcmtmK3kwZXB5aHh6Qnc2cm15bHM4MEN1NnhGMG5maUNNNUpKYU1kU1BGWUN6ckhIZlE9 +X-SES-DKIM-SIGNATURE: a=rsa-sha256; q=dns/txt; b=WiWIOoGLoGdbRjuXUDEiwVTd0MlZNhgcag5DJCf3zbzITZVjW3dujPpJuBFoRcQQFro5GtE6XajIionp3hRynfB8Xm0GxaSNtzlcgC9WIpxWpRTsZQf81mHx2+VG3WrCbWb8ic5B2crsZAyJ+PNsmZeoo0fSxO178H4xCriuVmk=; c=relaxed/simple; s=7v7vs6w47njt4pimodk5mmttbegzsi6n; d=amazonses.com; t=1733406849; v=1; bh=BIMa1/YfbtwxkQfNdlpvec8diMTfOKBfEUPkbhbdOU4=; h=From:To:Cc:Bcc:Subject:Date:Message-ID:MIME-Version:Content-Type:X-SES-RECEIPT; +DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; + d=uscourts.gov; i=@uscourts.gov; l=5499; q=dns/txt; + s=law1e; t=1733406849; x=1764942849; + h=date:x-authentication-warning:mime-version:from:to: + message-id:subject:content-type:x-sbrs:x-remote-ip; + bh=BIMa1/YfbtwxkQfNdlpvec8diMTfOKBfEUPkbhbdOU4=; + b=kpVRRFOdCvFHMSSyGqSiMuRf5JidwfNQk5FAqUJ0UrfqVEd3eXoj5VlT + s35maHXyzgyggf7vSm1/e78vxYXJg+PA7AmxwJVMWQmE95S1jbzRkNvzB + zk7N7/j61svqAVfrvtIgfKFMqg70S3NFFa8GaBvjdoK4sZDVuH7w8BE16 + 7YEEueXWlWthmLaddwc7SpgCzV6f0sK9KH1q6mZo5aBl3/eLMbEXLTeZF + pLjnqkAhvx+XF65AoSs9V4lZb/WvnRgkkuqDHI8COmh2GdVbA4ytIV3FJ + Nusu90mgK7TFEJS1KeyW0YSW0ugA1FJW0Vf04it2ZOV/6gfzWj/LC0ouD + g==; +X-SBRS: None +X-REMOTE-IP: 156.119.190.80 +Received: from paebdb.paeb.gtwy.dcn ([156.119.190.80]) + by icmecf102.gtwy.uscourts.gov with ESMTP; 05 Dec 2024 08:54:08 -0500 +Received: from paebdb.paeb.gtwy.dcn (localhost.localdomain [127.0.0.1]) + by paebdb.paeb.gtwy.dcn (8.14.7/8.14.7) with ESMTP id 4B5Ds6Wh015307; + Thu, 5 Dec 2024 08:54:07 -0500 +Received: (from ecf_web@localhost) + by paebdb.paeb.gtwy.dcn (8.14.7/8.14.4/Submit) id 4B5Ds4er015279; + Thu, 5 Dec 2024 08:54:04 -0500 +Date: Thu, 5 Dec 2024 08:54:04 -0500 +X-Authentication-Warning: paebdb.paeb.gtwy.dcn: ecf_web set sender to email@email.com.gov using -f +MIME-Version:1.0 +From:email@email.com.gov +To:email@email.com.gov +Message-Id: +Subject:Ch-13 23-12910-pmm Close Adversary Case - Erik A. Wharton +Content-Type: text/html + +

***NOTE TO PUBLIC ACCESS USERS*** Judicial Conference of the United States policy permits attorneys of record and parties in a case (including pro se litigants) to receive one free electronic copy of all documents filed electronically, if receipt is required by law or directed by the filer. PACER access fees apply to all other users. To avoid later charges, download a copy of each document during this first viewing. However, if the referenced document is a transcript, the free copy and 30-page limit do not apply.

+ + + + +

U.S. Bankruptcy Court

+ +

Eastern District of Pennsylvania

+Notice of Electronic Filing +
+
+
The following transaction was received from LastName, FirstName entered on 12/5/2024 at 8:54 AM EST and filed on 12/5/2024 + +
+ + + +
Case Name: -Br Cun
Brittany Cunningham
Case Number:23-13129-amc
Document Number:
+ + + + + +
Case Name: +Wharton et al v. Prosper Marketplace Inc.
Case Number:24-00078-pmm
WARNING: CASE CLOSED on 12/05/2024
Document Number: + +
+ + + + + + + + + +
Case Name: +Erik A. Wharton and Shari L. Merton
Case Number:23-12910-pmm
Document Number: + +
+ + + + +

Docket Text: + +
+Adversary Case 2:24-ap-78 Terminated for Statistical Purposes. (G., Jeanette) +

+ +

The following document(s) are associated with this transaction:

+ + +
+ + + + + +
diff --git a/tests/examples/pacer/nef/s3/tnmb_1.json b/tests/examples/pacer/nef/s3/tnmb_1.json index e3fc0dc85..1250f7cca 100644 --- a/tests/examples/pacer/nef/s3/tnmb_1.json +++ b/tests/examples/pacer/nef/s3/tnmb_1.json @@ -16,7 +16,7 @@ "pacer_doc_id": null, "pacer_magic_num": null, "pacer_seq_no": null, - "short_description": "Docket Order - Continue Hearing (Auto) Ch 13" + "short_description": "Docket Order - Continue Hearing (Auto)" } ], "docket_number": "1:24-bk-01377", diff --git a/tests/examples/pacer/nef/s3/txnb_multi_1.json b/tests/examples/pacer/nef/s3/txnb_multi_1.json new file mode 100644 index 000000000..52898a62b --- /dev/null +++ b/tests/examples/pacer/nef/s3/txnb_multi_1.json @@ -0,0 +1,54 @@ +{ + "appellate": false, + "contains_attachments": false, + "court_id": "txnb", + "dockets": [ + { + "case_name": "AREYA HOLDER AURZADA, CHAPTER 7 TRUSTEE FOR THE BA v. JPMORGAN CHASE BANK, N.A.", + "date_filed": null, + "docket_entries": [ + { + "date_filed": "2024-09-20", + "description": "Adversary case 3:24-ap-3029 closed (Whitaker, Sheniqua)", + "document_number": null, + "document_url": null, + "pacer_case_id": "515862", + "pacer_doc_id": null, + "pacer_magic_num": null, + "pacer_seq_no": null, + "short_description": "Multiple Cases \"Close adversary case\"" + } + ], + "docket_number": "24-03029", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "swe", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null + }, + { + "case_name": "Dennis James Rogers, II", + "date_filed": null, + "docket_entries": [ + { + "date_filed": "2024-09-20", + "description": "Adversary case 3:24-ap-3029 closed (Whitaker, Sheniqua)", + "document_number": null, + "document_url": null, + "pacer_case_id": "498457", + "pacer_doc_id": null, + "pacer_magic_num": null, + "pacer_seq_no": null, + "short_description": "Multiple Cases \"Close adversary case\"" + } + ], + "docket_number": "22-30500", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "swe", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null + } + ], + "email_recipients": [] +} \ No newline at end of file diff --git a/tests/examples/pacer/nef/s3/txnb_multi_1.txt b/tests/examples/pacer/nef/s3/txnb_multi_1.txt new file mode 100644 index 000000000..cc7a1dd45 --- /dev/null +++ b/tests/examples/pacer/nef/s3/txnb_multi_1.txt @@ -0,0 +1,92 @@ +Return-Path: +Received: from icmecf201.gtwy.uscourts.gov (icmecf201.gtwy.uscourts.gov [63.241.40.204]) + by inbound-smtp.us-west-2.amazonaws.com with SMTP id hohq310tv1trktrvmik1tv98j5sdciepu6dggdg1 + for email@email.com; + Fri, 20 Sep 2024 16:54:26 +0000 (UTC) +X-SES-Spam-Verdict: PASS +X-SES-Virus-Verdict: PASS +Received-SPF: pass (spfCheck: domain of txnb.uscourts.gov designates 63.241.40.204 as permitted sender) client-ip=63.241.40.204; envelope-from=email@email.com.gov; helo=icmecf201.gtwy.uscourts.gov; +Authentication-Results: amazonses.com; + spf=pass (spfCheck: domain of txnb.uscourts.gov designates 63.241.40.204 as permitted sender) client-ip=63.241.40.204; envelope-from=email@email.com.gov; helo=icmecf201.gtwy.uscourts.gov; + dmarc=none header.from=txnb.uscourts.gov; +X-SES-RECEIPT: AEFBQUFBQUFBQUFHOEc0b1hZNHZ1OGdOaG9Hd1dlNjQ4MUFIMDQrZFU0Mzl4bFZrUFhiWnJmVnZzWW5VOUlwdGZZUHpiSWk2a2JubGFjUTZaK3VheWsvNHdMSXpkNGhSOFdxVmkvNlVZNVh0cFA4MVNQNnpsZ3JDRlhLbEFkWTJzM0xEbzE4QWF1MWE2Tjd6Ri9CRnlBTWdUOXYwZldORU1sVFFzV241Vm5CUHhjM0ZwbVVKRjl0NENsOFdyOTQzK28yRTRYamRaZlQ4TGdpbXBOeWlQUnJHNWlaVFVLU1djUmJQaUpUK0hLY0QwbFdPMnlQZGE1eWhBQzkrZW01bVZOanN0d3FNelVNeEIxajA1K2ZrU0JHeXh1TEJPak5vK2h4RmlaU3lhY0dyYi9iQTREMEJDc01TWFpseFdjU3psVXdOcFhUN0tNeVE9 +X-SES-DKIM-SIGNATURE: a=rsa-sha256; q=dns/txt; b=PiMq33GGTbdrJSQ6GkNbepI1gLs90X2tBe5Ok5bx1S7pAClg14wyV1aAixGqwFyXmOmt8/hvc51nVC2RdFK8VgwIlcFHtB+5OP/+VGrs4NyH8vMMMjbvcvdfrpyW6P2QoYhq6FSm6D96S075TnO74Y/uceLzOZy6VuHftgS8/K8=; c=relaxed/simple; s=7v7vs6w47njt4pimodk5mmttbegzsi6n; d=amazonses.com; t=1726851267; v=1; bh=rqX6nky++eAH26WyZkOQ2q8fKwc5QI5CoUz5lelrdYw=; h=From:To:Cc:Bcc:Subject:Date:Message-ID:MIME-Version:Content-Type:X-SES-RECEIPT; +X-SBRS: None +X-REMOTE-IP: 156.119.56.48 +Received: from txnbdb.txnb.gtwy.dcn ([156.119.56.48]) + by icmecf201.gtwy.uscourts.gov with ESMTP; 20 Sep 2024 12:54:26 -0400 +Received: from txnbdb.txnb.gtwy.dcn (localhost.localdomain [127.0.0.1]) + by txnbdb.txnb.gtwy.dcn (8.14.7/8.14.7) with ESMTP id 48KGre1G047316; + Fri, 20 Sep 2024 11:53:42 -0500 +Received: (from ecf_web@localhost) + by txnbdb.txnb.gtwy.dcn (8.14.7/8.14.4/Submit) id 48KGra0F047145; + Fri, 20 Sep 2024 11:53:36 -0500 +Date: Fri, 20 Sep 2024 11:53:36 -0500 +X-Authentication-Warning: txnbdb.txnb.gtwy.dcn: ecf_web set sender to email@email.com.gov using -f +MIME-Version:1.0 +From:email@email.com.gov +To:email@email.com.gov +Message-Id: +Subject:Multiple Cases "Close adversary case" +Content-Type: text/html + +

***NOTE TO PUBLIC ACCESS USERS*** Judicial Conference of the United States policy permits attorneys of record and parties in a case (including pro se litigants) to receive one free electronic copy of all documents filed electronically, if receipt is required by law or directed by the filer. PACER access fees apply to all other users. To avoid later charges, download a copy of each document during this first viewing. However, if the referenced document is a transcript, the free copy and 30-page limit do not apply.

+ + + + +

U.S. Bankruptcy Court

+ +

Northern District of Texas

+Notice of Electronic Filing +
+
+
The following transaction was received from LastName, FirstName entered on 9/20/2024 at 11:53 AM CDT and filed on 9/20/2024 + +
+ + + + + + + + + +
Case Name: +AREYA HOLDER AURZADA, CHAPTER 7 TRUSTEE FOR THE BA v. JPMORGAN CHASE BANK, N.A. et al
Case Number:24-03029-swe
WARNING: CASE CLOSED on 09/20/2024
Document Number: + +
+ + + + + + + + + +
Case Name: +Dennis James Rogers, II
Case Number:22-30500-swe7
Document Number: + +
+ + + + +

Docket Text: + +
+Adversary case 3:24-ap-3029 closed (Whitaker, Sheniqua) +

+ +

The following document(s) are associated with this transaction:

+ + +
+
+ + + + +
diff --git a/tests/examples/pacer/nef/s3/vaeb_1.json b/tests/examples/pacer/nef/s3/vaeb_1.json index c9d7fa394..0601b2e59 100644 --- a/tests/examples/pacer/nef/s3/vaeb_1.json +++ b/tests/examples/pacer/nef/s3/vaeb_1.json @@ -16,7 +16,7 @@ "pacer_doc_id": "188040985133", "pacer_magic_num": "49963627", "pacer_seq_no": "101", - "short_description": "Notice of Dismissal" + "short_description": "Notice of Dismissal - CerDocTyp" } ], "docket_number": "23-31747",