diff --git a/juriscraper/pacer/email.py b/juriscraper/pacer/email.py index f73b5476d..ec8b66d22 100644 --- a/juriscraper/pacer/email.py +++ b/juriscraper/pacer/email.py @@ -48,6 +48,31 @@ class NotificationEmail(BaseDocketReport, BaseReport): "Modified Date Filed from", "Added Correct PDF to document", ] + bankruptcy_courts_with_tests = [ + "arwb", + "cacb", + "casb", + "cob", + "ctb", + "dcb", + "deb", + "flsb", + "ianb", + "mdb", + "nceb", + "ndb", + "nhb", + "njb", + "nyeb", + "nysb", + "okeb", + "paeb", + "pamb", + "pawb", + "tnmb", + "txnb", + "vaeb", + ] def __init__(self, court_id): self.court_id = court_id @@ -57,6 +82,7 @@ def __init__(self, court_id): self.docket_numbers = [] self.subject = None self.case_names = [] + self.raw_docket_numbers = set() if self.court_id.endswith("b"): self.is_bankruptcy = True else: @@ -172,16 +198,16 @@ def _parse_docket_number( return case_number, self._return_default_dn_components() path = self._sibling_path("Case Number") + docket_numbers_str = current_node.xpath(f"{path}/a/text()") + self.raw_docket_numbers.update(set(docket_numbers_str)) docket_number, docket_number_components = ( - self._parse_docket_number_strs( - current_node.xpath(f"{path}/a/text()") - ) + self._parse_docket_number_strs(docket_numbers_str) ) if not docket_number: + docket_numbers_str = current_node.xpath(f"{path}/p/a/text()") + self.raw_docket_numbers.update(set(docket_numbers_str)) docket_number, docket_number_components = ( - self._parse_docket_number_strs( - current_node.xpath(f"{path}/p/a/text()") - ) + self._parse_docket_number_strs(docket_numbers_str) ) return docket_number, docket_number_components @@ -199,6 +225,7 @@ def _parse_docket_number_plain( email_body = self.tree.text_content() regex = r"Case Number:(.*)" docket_number = re.findall(regex, email_body) + self.raw_docket_numbers.update(set(docket_number)) return self._parse_docket_number_strs(docket_number) def _get_date_filed(self) -> date: @@ -396,7 +423,6 @@ def _get_dockets(self) -> DocketType: docket_number, docket_number_components = ( self._parse_docket_number_plain() ) - docket_number = docket_number # Cache the docket number for its later use. self.docket_numbers.append(docket_number) @@ -534,115 +560,69 @@ 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. """ + # Some courts have subjects like + # `Multiple Cases "{docket} {case name} Close [Aa]dversary [Cc]ase" - {initials}` + if close_adv_match := re.search( + r"close adversary case", subject, flags=re.IGNORECASE + ): + return close_adv_match.group(0) + + # raw dockets from "plain/text" email may have a URL + raw_docket_numbers = [ + i.strip().split(" ")[0] for i in self.raw_docket_numbers + ] + raw_docket_numbers.sort(key=len, reverse=True) # use longest first + for part in raw_docket_numbers + self.docket_numbers + self.case_names: + subject = subject.replace(part, " ") - # 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": + # 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: + # - "NEF: " placeholder + # - "Ch \d{1,2}" abbreviations + cleanup_regex = r"(NEF:? )|(C[Hh][- ]?(7|9|11|13))|(C[hH][\s-]*$)" + subject = re.sub(cleanup_regex, " ", subject) + + # Courts like `nhb` do not use the "Ch \d{1,2}" abbreviation + # and we must delete the "Chapter..." string; but only once + # See nhb_2 for an example with 2 "Chapter..." strings + chapter_regex = r"Chapter[- ]?(7|9|11|13)" + if self.court_id in ["nhb"]: + subject = re.sub(chapter_regex, " ", subject, 1) + elif len(re.findall(chapter_regex, subject)) > 1: 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" - ] - }, + "Trying to parse a RECAP email with more than 1 'Chapter...' string" ) - return "" - 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: + subject = subject.strip(" ;:,- ") + # some courts use "Re: {case name}" + short_description = re.sub("( Re$)|(^Re:? )", "", subject) + + if self.court_id not in self.bankruptcy_courts_with_tests: logger.error( - "Short description has no parsing for bankruptcy court '%s'", + "Parsing a RECAP email from court %s without tests", self.court_id, - extra={ - "fingerprint": [ - f"{self.court_id}-not-parsing-short-description" - ] - }, ) return short_description diff --git a/tests/examples/pacer/nef/s3/cacb_7.json b/tests/examples/pacer/nef/s3/cacb_7.json new file mode 100644 index 000000000..5733e7d30 --- /dev/null +++ b/tests/examples/pacer/nef/s3/cacb_7.json @@ -0,0 +1,46 @@ +{ + "appellate": false, + "contains_attachments": false, + "court_id": "cacb", + "dockets": [ + { + "case_name": "Lee v. Newman", + "date_filed": null, + "docket_entries": [ + { + "date_filed": "2023-02-15", + "description": "Order granting stipulation to continue pre-trial conference from 2/28/23 to 4/25/23 @ 10:00 a.m. (BNC-PDF) (Related Doc [75]) Signed on 2/15/2023 (JC6)", + "document_number": "76", + "document_url": "https://ecf.cacb.uscourts.gov/doc1/9730106502427?pdf_header=&magic_num=94356268&de_seq_num=252&caseid=1927388", + "pacer_case_id": "1927388", + "pacer_doc_id": "9730106502427", + "pacer_magic_num": "94356268", + "pacer_seq_no": "252", + "short_description": "ORDER to continue/reschedule hearing (BNC-PDF)" + } + ], + "docket_number": "6:21-ap-01071", + "federal_defendant_number": null, + "federal_dn_case_type": "ap", + "federal_dn_judge_initials_assigned": "SC", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "6" + } + ], + "email_recipients": [ + { + "email_addresses": [ + "suzanne.grandt@calbar.ca.gov", + "joan.randolph@calbar.ca.gov", + "hbgtrustee@gtllp.com", + "C135@ecfcbis.com", + "a@gmail.com", + "x@recap.emailx@y.net", + "don@donreidlaw.com", + "ecf@donreidlaw.com", + "ustpregion16.rs.ecf@usdoj.gov" + ], + "name": "" + } + ] +} \ No newline at end of file diff --git a/tests/examples/pacer/nef/s3/cacb_7.txt b/tests/examples/pacer/nef/s3/cacb_7.txt new file mode 100644 index 000000000..64193320a --- /dev/null +++ b/tests/examples/pacer/nef/s3/cacb_7.txt @@ -0,0 +1,121 @@ +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 f086thkp632ni7ho26h2cp3m57475aoo531l0rg1 + for user@recap.email; + Wed, 15 Feb 2023 19:05:58 +0000 (UTC) +X-SES-Spam-Verdict: PASS +X-SES-Virus-Verdict: PASS +Received-SPF: pass (spfCheck: domain of cacb.uscourts.gov designates 63.241.40.204 as permitted sender) client-ip=63.241.40.204; envelope-from=cmecfhelpdesk@cacb.uscourts.gov; helo=icmecf201.gtwy.uscourts.gov; +Authentication-Results: amazonses.com; + spf=pass (spfCheck: domain of cacb.uscourts.gov designates 63.241.40.204 as permitted sender) client-ip=63.241.40.204; envelope-from=cmecfhelpdesk@cacb.uscourts.gov; helo=icmecf201.gtwy.uscourts.gov; + dmarc=none header.from=cacb.uscourts.gov; +X-SES-RECEIPT: AEFBQUFBQUFBQUFGSkRsMElEeHNURW9JdS9OTUpBaDY1WGJYdHRUR3dpd3RCeElONSs1NEhUeUJUejZCMkJ5dFFxVThqNmNTS280SVJhNTEveXp2dkU2SkZ3NUc4SXk5T0k1SUhqWG5lUFdVZ2hWdHlNb1luWlhWWHlRdXdQQzBsQnV6SmhwOVEySVA2ajBCakpKbGgrQk94RDR0RG5Samh5WjhXNTdFWk1ZcnJRV05HVC8zOTdzQW1CdDRLdFdzbDQvSGJLMHdnekljZTBjVGtLdkJLRWtBZ0xHa0ZVeDZFcU9IT0FpZ3NxZjNnVlFVa3Azdk8yWU1Idk5yN2JSTzNpcW1IQzU4VjdrcDdCRlVURWkvSFBMam9QNmw4a0dmK0l1aUhlVFZTZUlsM3lid2F3Q0tpSnp1dUNlVjhVWVo2ZTRGSG51Smtjblk9 +X-SES-DKIM-SIGNATURE: a=rsa-sha256; q=dns/txt; b=cyXVrqqoX2hgFA2XPCej1hlEGbluwv2Ox2WNe6t35+t9tfhd9Ph8dOMETcdyzatjzDvONU8enJROV8YWdh8AWOIOMs35snGKrgE667Vv6gc5SrAfeEnlcUpZV0yEsPSgSMLdMF7E3V3lPRExu50gRwqhA3v7RGX1A05XGwkbm0s=; c=relaxed/simple; s=gdwg2y3kokkkj5a55z2ilkup5wp5hhxx; d=amazonses.com; t=1676487959; v=1; bh=Tw3rhcsR47lIUsxr8IkHEZyLE/vCL1ppyfg937qipHc=; 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.188 +Received: from cacbdb.cacb.gtwy.dcn ([156.119.56.188]) + by icmecf201.gtwy.uscourts.gov with ESMTP; 15 Feb 2023 14:05:58 -0500 +Received: from cacbdb.cacb.gtwy.dcn (localhost.localdomain [127.0.0.1]) + by cacbdb.cacb.gtwy.dcn (8.14.4/8.14.4) with ESMTP id 31FJ5BJO093254; + Wed, 15 Feb 2023 11:05:13 -0800 +Received: (from ecf_web@localhost) + by cacbdb.cacb.gtwy.dcn (8.14.4/8.14.4/Submit) id 31FJ59NW093057; + Wed, 15 Feb 2023 11:05:09 -0800 +Date: Wed, 15 Feb 2023 11:05:09 -0800 +X-Authentication-Warning: cacbdb.cacb.gtwy.dcn: ecf_web set sender to cmecfhelpdesk@cacb.uscourts.gov using -f +MIME-Version:1.0 +From:cmecfhelpdesk@cacb.uscourts.gov +To:Courtmail@cacb.uscourts.gov +Message-Id:<103732686@cacb.uscourts.gov> +Subject:6:21-ap-01071-SC ORDER to continue/reschedule hearing (BNC-PDF) +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

+ +

Central District of California

+Notice of Electronic Filing +
+
+
The following transaction was received from AutoDocket, CIAO-User entered on 02/15/2023 at 10:37 AM PST and filed on 02/15/2023 + +
+ + + + + + + + + +
Case Name: +Lee v. Newman
Case Number:6:21-ap-01071-SC
Document Number: +76 +
+ + + + +

Docket Text: + +
+Order granting stipulation to continue pre-trial conference from 2/28/23 to 4/25/23 @ 10:00 a.m. (BNC-PDF) (Related Doc # [75]) Signed on 2/15/2023 (JC6) +

+ +

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

+ +Document description:Main Document +
Original filename:/data/docs0/ECF/ADI/cacb_live/realtime/documents/cdcbbab3-e2cd-4625-b06f-53522d662225.pdf +
Electronic document Stamp: +
[STAMP bkecfStamp_ID=1106918562 [Date=02/15/2023] [FileNumber=103732406-0] [a400daefa90430e46c061a209095155700b50778d5e6b77aaeb77e450c8a44bf3521e6258f250debf76dca79a24273baeb803ee02251a15bfee9f21993921b8a]] +
+ +
+
+ + + + +
+6:21-ap-01071-SC Notice will be electronically mailed to: + + +
+ +
Suzanne C Grandt on behalf of Interested Party The State Bar of California +
suzanne.grandt@calbar.ca.gov, joan.randolph@calbar.ca.gov +
+
Howard B Grobstein (TR) +
hbgtrustee@gtllp.com, C135@ecfcbis.com +
+
Firstname LastName on behalf of Plaintiff Chloe Taekyeong Lee +
a@gmail.com, x@recap.email,x@y.net +
+
Donald W Reid on behalf of Defendant Michael Paul Newman +
don@donreidlaw.com, ecf@donreidlaw.com +
+
United States Trustee (RS) +
ustpregion16.rs.ecf@usdoj.gov +
+ +
+ +6:21-ap-01071-SC Notice will not be electronically mailed to: + + +
+ +
+ +
+ + + + +
+
\ No newline at end of file diff --git a/tests/examples/pacer/nef/s3/casb_1.json b/tests/examples/pacer/nef/s3/casb_1.json new file mode 100644 index 000000000..6d647688f --- /dev/null +++ b/tests/examples/pacer/nef/s3/casb_1.json @@ -0,0 +1,42 @@ +{ + "appellate": false, + "contains_attachments": false, + "court_id": "casb", + "dockets": [ + { + "case_name": "Omar Jay Alegria", + "date_filed": null, + "docket_entries": [ + { + "date_filed": "2024-12-29", + "description": "Notice of Chapter 7 Bankruptcy Case, Meeting of Creditors & Notice of Appointment of Interim Trustee Ackerman, Leonard J. with Financial Management Course Due Date: 3/31/2025. Objections for Discharge due by 3/31/2025. (LastName, FirstName)", + "document_number": "5", + "document_url": null, + "pacer_case_id": "465289", + "pacer_doc_id": null, + "pacer_magic_num": null, + "pacer_seq_no": null, + "short_description": "Notice of Chapter 7 Bankruptcy Case & Meeting of Creditors" + } + ], + "docket_number": "24-04888", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "CL", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null + } + ], + "email_recipients": [ + { + "email_addresses": [ + "ljabkatty@gmail.com", + "lja@trustesolutions.net", + "a@gmail.com", + "user@recap.emaila@b.net", + "ustp.region15@usdoj.gov" + ], + "name": "" + } + ] +} \ No newline at end of file diff --git a/tests/examples/pacer/nef/s3/casb_1.txt b/tests/examples/pacer/nef/s3/casb_1.txt new file mode 100644 index 000000000..c82d7820d --- /dev/null +++ b/tests/examples/pacer/nef/s3/casb_1.txt @@ -0,0 +1,113 @@ +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 ob5ij3rvul19jfh0ad2a26pglt7ecv44ulgf7j81 + for user@recap.email; + Mon, 30 Dec 2024 01:34:36 +0000 (UTC) +X-SES-Spam-Verdict: PASS +X-SES-Virus-Verdict: PASS +Received-SPF: pass (spfCheck: domain of casb.uscourts.gov designates 199.107.16.200 as permitted sender) client-ip=199.107.16.200; envelope-from=info_casb@casb.uscourts.gov; helo=icmecf101.gtwy.uscourts.gov; +Authentication-Results: amazonses.com; + spf=pass (spfCheck: domain of casb.uscourts.gov designates 199.107.16.200 as permitted sender) client-ip=199.107.16.200; envelope-from=info_casb@casb.uscourts.gov; helo=icmecf101.gtwy.uscourts.gov; + dkim=pass header.i=@uscourts.gov; + dmarc=pass header.from=casb.uscourts.gov; +X-SES-RECEIPT: AEFBQUFBQUFBQUFGcUJKaFQrR1VCb3dmMStrS3BXbjBGME9PdDU3RWtXakF1NER2SmZhZk9aU2swUEgvWjcybHJpVkRScm56QjN0VWVyMEVRNlNrVFFtdVNTa2xUYWl5T21TbFdKQWRtSVFCTVBKd1Zwb2dpWjNUbDV4SzZpaTJDWmVSY1piSjZzNjhXZHFiZXB0aExVL1pETDcwZTR2bFh5T0dXamFKZlVyT1RGZW00eWZXZ2lZVnlqcGVvTG9OZ2FkR0Q0am4xeWdCMy9vTE5PS3J6TDI2aG41c1ZTYzJGODRxWERwcyt5VVZISWxYMmk3dDV4SGZ4cXhFeXphQkh1aFpGNXJ1Zy9HblNIQzJ3K285ajlyUFVIdVdyY011Zm43MlM0UnlKdnR4Uy85MUo3aVVCcGc9PQ== +X-SES-DKIM-SIGNATURE: a=rsa-sha256; q=dns/txt; b=WZYM3v/whDpIcmxdvuRctVwk/zOgxnKAjfYrm0mlNFI3Del1Q5xaFHUvDQgH3gKAb9zzc6rQuMLGb9W2CKxzTe38J6R3kLyRlf5fKJVs43SPdhq1ljpqFPEb7YTI9J47viMMB3x+Zh99g851f+xjtKnunCzhsJlGxoDAH6sI9pw=; c=relaxed/simple; s=7v7vs6w47njt4pimodk5mmttbegzsi6n; d=amazonses.com; t=1735522477; v=1; bh=WVaAKo7MFxJmVM+T9IUik8ou6XvZMd8ooY8rYTHcdns=; 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=2387; q=dns/txt; + s=law1e; t=1735522476; x=1767058476; + h=date:x-authentication-warning:mime-version:from:to: + message-id:subject:content-type:x-sbrs:x-remote-ip; + bh=WVaAKo7MFxJmVM+T9IUik8ou6XvZMd8ooY8rYTHcdns=; + b=SatsUL9Y410IbsTDPG7cAnsBpnddJ7BVjTD47paFRZuuUucK9tKGo+gQ + OfFMBmR8uAKwQiTux7UmC0hGm3UNCSoMa2jzX4aj1IZGzHxPXXCJHLlD6 + Yk57eEMQVwys48L1AA2D/TRrEceIcPb+PAqSiqFqrs+NKJz5upQ5xntiL + htCUyTuru8ISYZFtK6E/fwmH+VlZQsauutWEmGLsfrOHmVmlU0NMrj7mI + X9HoleGRi03MftFMHJmHrcDUTLmrqwKcfUkbA/2O7Qj5IbvxAJ70USXfp + kLJkn6yMUvfaJp/Y0pUFNyBC19NKjD0OkFsZ+Dv5801s8wwUVqA9t4LCW + w==; +X-SBRS: None +X-REMOTE-IP: 156.119.56.77 +Received: from casbdb.casb.gtwy.dcn ([156.119.56.77]) + by icmecf101.gtwy.uscourts.gov with ESMTP; 29 Dec 2024 20:34:35 -0500 +Received: from casbdb.casb.gtwy.dcn (localhost.localdomain [127.0.0.1]) + by casbdb.casb.gtwy.dcn (8.14.7/8.14.7) with ESMTP id 4BU1XnkY067794; + Sun, 29 Dec 2024 17:33:49 -0800 +Received: (from ecf_web@localhost) + by casbdb.casb.gtwy.dcn (8.14.7/8.14.4/Submit) id 4BU1Xga6067741; + Sun, 29 Dec 2024 17:33:42 -0800 +Date: Sun, 29 Dec 2024 17:33:42 -0800 +X-Authentication-Warning: casbdb.casb.gtwy.dcn: ecf_web set sender to info_casb@casb.uscourts.gov using -f +MIME-Version:1.0 +From:info_casb@casb.uscourts.gov +To:casb_ecf@casb.uscourts.gov +Message-Id:<20552464@casb.uscourts.gov> +Subject:24-04888-CL7 Notice of Chapter 7 Bankruptcy Case & Meeting of Creditors +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 California

+Notice of Electronic Filing +
+
+
The following transaction was received from LastName, FirstName entered on 12/29/2024 at 5:33 PM PST and filed on 12/29/2024 + +
+ + + + + + + + + +
Case Name: +Omar Jay Alegria
Case Number:24-04888-CL7
Document Number: +5 +
+ + + + +

Docket Text: + +
+Notice of Chapter 7 Bankruptcy Case, Meeting of Creditors & Notice of Appointment of Interim Trustee Ackerman, Leonard J. with 341(a) meeting to be held on 1/28/2025 at 09:00 AM. via Zoom - Ackerman Meeting ID 850 752 6242, and Passcode 5801344241, Phone (619) 367-1561. Financial Management Course Due Date: 3/31/2025. Objections for Discharge due by 3/31/2025. (LastName, FirstName) +

+ +

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

+ + +
+
+ + + + +
+24-04888-CL7 Notice will be electronically mailed to: + + +
+ +
Leonard J. Ackerman +
ljabkatty@gmail.com, lja@trustesolutions.net +
+
FirstName LastName on behalf of Debtor Omar Jay Alegria +
a@gmail.com, user@recap.email,a@b.net +
+
United States Trustee +
ustp.region15@usdoj.gov +
+ +
+ +24-04888-CL7 Notice will not be electronically mailed to: + + diff --git a/tests/examples/pacer/nef/s3/casb_2.json b/tests/examples/pacer/nef/s3/casb_2.json new file mode 100644 index 000000000..7c02e8f01 --- /dev/null +++ b/tests/examples/pacer/nef/s3/casb_2.json @@ -0,0 +1,40 @@ +{ + "appellate": false, + "contains_attachments": false, + "court_id": "casb", + "dockets": [ + { + "case_name": "Omar Jay Alegria", + "date_filed": null, + "docket_entries": [ + { + "date_filed": "2024-12-29", + "description": "Voluntary Petition for Individuals Schedules & Statements Fee Amount $ 338.00. Declaration re: Electronic Filing due by 01/13/2025, Filed by FirstName LastName of Nexus Bankruptcy on behalf of Omar Jay Alegria. (LastName, FirstName)", + "document_number": "1", + "document_url": "https://ecf.casb.uscourts.gov/doc1/036021419934?pdf_header=&magic_num=29072456&de_seq_num=2&caseid=465289", + "pacer_case_id": "465289", + "pacer_doc_id": "036021419934", + "pacer_magic_num": "29072456", + "pacer_seq_no": "2", + "short_description": "Chapter 7 Voluntary Petition" + } + ], + "docket_number": "24-04888", + "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": [ + { + "email_addresses": [ + "user@gmail.com", + "user@recap.emailNexusBankruptcy@sss.net", + "ustp.region15@usdoj.gov" + ], + "name": "" + } + ] +} \ No newline at end of file diff --git a/tests/examples/pacer/nef/s3/casb_2.txt b/tests/examples/pacer/nef/s3/casb_2.txt new file mode 100644 index 000000000..3955bd0ce --- /dev/null +++ b/tests/examples/pacer/nef/s3/casb_2.txt @@ -0,0 +1,118 @@ +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 2svp6bsd2eakbkkimqgodf5gs40agcm8ig097b81 + for user@recap.email; + Mon, 30 Dec 2024 01:32:20 +0000 (UTC) +X-SES-Spam-Verdict: PASS +X-SES-Virus-Verdict: PASS +Received-SPF: pass (spfCheck: domain of casb.uscourts.gov designates 199.107.16.202 as permitted sender) client-ip=199.107.16.202; envelope-from=info_casb@casb.uscourts.gov; helo=icmecf102.gtwy.uscourts.gov; +Authentication-Results: amazonses.com; + spf=pass (spfCheck: domain of casb.uscourts.gov designates 199.107.16.202 as permitted sender) client-ip=199.107.16.202; envelope-from=info_casb@casb.uscourts.gov; helo=icmecf102.gtwy.uscourts.gov; + dkim=pass header.i=@uscourts.gov; + dmarc=pass header.from=casb.uscourts.gov; +X-SES-RECEIPT: AEFBQUFBQUFBQUFFZ1N3cjhva1VYRGM5b0U2QTQyeTFxOXlqdkRMUWpDRlIycllNbzJBZ1Z4ZkpkNzBMbnBVKytYOVhDMk1VUlpQYVVpcU5Memd0cVlNZEZ0S2grLzBPbWhnY2FlR0hjei96K3NtaGFBTVRTVTRrUFZRM2E2OENUa3JLd2RJS2J0UTg5WnYxNTVmd1ZVSVBvVWw2MXpnMFAzcW5FU1lqMHNwSzFGVlhBL0o4RWpqSmcrWkNCYy9SdktyaW03TnorMHpOZnd1VEZMNitRY3cyUFJUQXZwQ0ZVSkcyNjBCbHhmcjkyaFZUTTNPOFpkR05KZnRDMEkzUWhFVUJ3b1ZMamhFQ1J1UWVrNXUwVHFwRlV5ckovWVBIVHZuNEJJWnFaeW8xN0RaNzZia3FQeUE9PQ== +X-SES-DKIM-SIGNATURE: a=rsa-sha256; q=dns/txt; b=1O9D1ERM+QDkg3uH2m31SVQJGX/iNvd0BTZ+Xuz1pZV+AtoOEFbXLw2swEKsRKXzrkTmdk7BLHzZ97bH2f5MOLUMhTJulaFgkrXrcd0p9qGn7VROJQ0Fl/sXfiWgipXzNLiC+EZbB1UWrtYVmgWygInVdkmRmMu12wmDNE0AF9A=; c=relaxed/simple; s=7v7vs6w47njt4pimodk5mmttbegzsi6n; d=amazonses.com; t=1735522341; v=1; bh=0uwzFsOxiLHhfMO0SxPOXnSJcpeYeirDde5wHB1W498=; 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=2644; q=dns/txt; + s=law1e; t=1735522340; x=1767058340; + h=date:x-authentication-warning:mime-version:from:to: + message-id:subject:content-type:x-sbrs:x-remote-ip; + bh=0uwzFsOxiLHhfMO0SxPOXnSJcpeYeirDde5wHB1W498=; + b=JmWfD9hx/5t34WqUJ1oV8FLUX4EOu+H41zIWpXVcSjeQHDI52tD9/R73 + 2+wJbrVUbDgrhuIrQz6gI6I4ly2gRxVeyr+Pv9HAxmD/DQYPjFON8NAes + 2AKsIgpttr+9lREgsFPvz35ht2BwbJAuVbB+9FH9Sa9VXd1D7DtlxoPo4 + GUYib3Qjilt2Nra6lltGRozWgkq/GxBnnPaTEZAvTPnff2PJrgSNJT7fd + D6rJuDjfGESRiUHiBUmgjJ+BJ3qBeOjJLjtH8iEmZ1eSP6v66wH6qcIgM + lTApbX6WcjB1CvuXpztXrKF6infLJmqq/O5uLn45sMre12qXlVC64MI2H + g==; +X-SBRS: None +X-REMOTE-IP: 156.119.56.77 +Received: from casbdb.casb.gtwy.dcn ([156.119.56.77]) + by icmecf102.gtwy.uscourts.gov with ESMTP; 29 Dec 2024 20:32:19 -0500 +Received: from casbdb.casb.gtwy.dcn (localhost.localdomain [127.0.0.1]) + by casbdb.casb.gtwy.dcn (8.14.7/8.14.7) with ESMTP id 4BU1VYfx064455; + Sun, 29 Dec 2024 17:31:34 -0800 +Received: (from ecf_web@localhost) + by casbdb.casb.gtwy.dcn (8.14.7/8.14.4/Submit) id 4BU1VS3F064382; + Sun, 29 Dec 2024 17:31:28 -0800 +Date: Sun, 29 Dec 2024 17:31:28 -0800 +X-Authentication-Warning: casbdb.casb.gtwy.dcn: ecf_web set sender to info_casb@casb.uscourts.gov using -f +MIME-Version:1.0 +From:info_casb@casb.uscourts.gov +To:casb_ecf@casb.uscourts.gov +Message-Id:<20552453@casb.uscourts.gov> +Subject:24-04888-7 Chapter 7 Voluntary Petition +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 California

+Notice of Bankruptcy Case Filing +
+
The following transaction was received from FirstName LastName entered on 12/29/2024 at 5:31 PM PST and filed on 12/29/2024 + +
+ + + + + + + + + +
Case Name: +Omar Jay Alegria
Case Number:24-04888-7
Document Number: +1 +
+ + + + +

Docket Text: + +
+Voluntary Petition for Individuals Schedules & Statements Fee Amount $ 338.00. Declaration re: Electronic Filing due by 01/13/2025, Filed by FirstName LastName of Nexus Bankruptcy on behalf of Omar Jay Alegria. (LastName, FirstName) +

+ +

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

+ +Document description:Main Document +
Original filename:Petition(3).pdf +
Electronic document + Stamp: +
[STAMP CASBStamp_ID=875559582 [Date=12/29/2024] [FileNumber=20552451-0 +
] [4f239923b005ced168c4148b7490c8d2e7f6570c0f11777b50ad676fd03c1d93884 +
1c2bf0dcab0191195c1513230a882990fc4e1a21d1d78f8f5988260185e22]] +
+ +
+
+ + + + +
+24-04888-7 Notice will be electronically mailed to: + + +
+ +
LastName FirstName on behalf of Debtor Omar Jay Alegria +
user@gmail.com, user@recap.email,NexusBankruptcy@sss.net +
+
United States Trustee +
ustp.region15@usdoj.gov +
+ +
+ +24-04888-7 Notice will not be electronically mailed to: + + +
diff --git a/tests/examples/pacer/nef/s3/cob.json b/tests/examples/pacer/nef/s3/cob_1.json similarity index 100% rename from tests/examples/pacer/nef/s3/cob.json rename to tests/examples/pacer/nef/s3/cob_1.json diff --git a/tests/examples/pacer/nef/s3/cob.txt b/tests/examples/pacer/nef/s3/cob_1.txt similarity index 100% rename from tests/examples/pacer/nef/s3/cob.txt rename to tests/examples/pacer/nef/s3/cob_1.txt diff --git a/tests/examples/pacer/nef/s3/cob_2.json b/tests/examples/pacer/nef/s3/cob_2.json new file mode 100644 index 000000000..456697286 --- /dev/null +++ b/tests/examples/pacer/nef/s3/cob_2.json @@ -0,0 +1,43 @@ +{ + "appellate": false, + "contains_attachments": false, + "court_id": "cob", + "dockets": [ + { + "case_name": "Delta, LLC", + "date_filed": null, + "docket_entries": [ + { + "date_filed": "2023-11-06", + "description": "ORDER ACCEPTING TRUSTEE'S REPORT AND CLOSING CASE. It appearing to the Court that the Trustee has filed a report certifying that the estate in the above-captioned case has been fully administered and that no objections to the report have been filed within 30 days thereafter, it is ORDERED that pursuant to Rule 5009, Federal Rule of Bankruptcy Procedure, there is a presumption that the estate has been fully administered; that the trustee be and hereby is discharged; that all nonexempt property listed by the Debtor and not administered by the trustee is hereby deemed abandoned pursuant to 11 U.S.C. 554(c); and the case hereby is closed pursuant to 11 U.S.C. 350(a). IT IS FURTHER ORDERED that all pending motions requiring notice and a hearing for which no certificate has been tendered in accordance with L.B.R. 9013-1 are deemed abandoned for want of prosecution and denied without prejudice.. (dd)", + "document_number": "33", + "document_url": null, + "pacer_case_id": "516007", + "pacer_doc_id": null, + "pacer_magic_num": null, + "pacer_seq_no": null, + "short_description": "Close Bankruptcy Case" + } + ], + "docket_number": "23-14130", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "JGR", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null + } + ], + "email_recipients": [ + { + "email_addresses": [ + "sbrown@acjblaw.com", + "colleen@acjblaw.com", + "x@y.com", + "x.gmail.com@recap.email", + "benjamin.a.sales@usdoj.gov", + "USTPRegion19.DV.ECF@usdoj.gov" + ], + "name": "" + } + ] +} \ No newline at end of file diff --git a/tests/examples/pacer/nef/s3/cob_2.txt b/tests/examples/pacer/nef/s3/cob_2.txt new file mode 100644 index 000000000..5e53b5197 --- /dev/null +++ b/tests/examples/pacer/nef/s3/cob_2.txt @@ -0,0 +1,104 @@ +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 1kn0mc4viepa16o4dls43ad1j5scvpmgr8pa37o1 + for user@recap.email; + Mon, 06 Nov 2023 23:34:47 +0000 (UTC) +X-SES-Spam-Verdict: PASS +X-SES-Virus-Verdict: PASS +Received-SPF: pass (spfCheck: domain of cob.uscourts.gov designates 199.107.16.200 as permitted sender) client-ip=199.107.16.200; envelope-from=cmecf-reply@cob.uscourts.gov; helo=icmecf101.gtwy.uscourts.gov; +Authentication-Results: amazonses.com; + spf=pass (spfCheck: domain of cob.uscourts.gov designates 199.107.16.200 as permitted sender) client-ip=199.107.16.200; envelope-from=cmecf-reply@cob.uscourts.gov; helo=icmecf101.gtwy.uscourts.gov; + dmarc=none header.from=cob.uscourts.gov; +X-SES-RECEIPT: AEFBQUFBQUFBQUFIejhCVmdlajJQRFo2eUVvcWg3ZURyVDlMN0F1ajNYNGdMWkttUlI5RUNXeGUycERIRnczYlZKb1BNakprNW1QVHNhcGIzQUFibU9iSkIwVjJwWm5BbTVPSHV6N3R5THBQOFEvSHQrQklUclZ0L0crSUU2VVVMQWVXcXVObnJiZSt5TE9meUNOVmdKWjJXRDNpOVNCc0RMejZub0p1VStnbGJ2dFR4dTRlVlBhREZIZmpyT2VpMXJGZms2a2plQjU1bHZGUnN4K3JMY1FmODA4ZHVSS1pBNjlCQy80WHd1WEpla0ttclNnL0hDVjlsTW1iWHg0Z0RieUNFbDlxVlVGeGRwYU9mbVJLTlJlUTNnQWVPcG1DYXJCbmM0eXVBTDNkS2w5ODRTeHh5Q3c9PQ== +X-SES-DKIM-SIGNATURE: a=rsa-sha256; q=dns/txt; b=Do90A5FaZE/9PAffpWBmxN/KuAIm+co/p8J0sXlRPXeV8iU423yPKCEEw6u3TQXwS2EcG07STfJMLZ9NbaAjNRiJOJMMXecE/CCKBm6jpgx0wNLpVAAgssalvK3HvT6QZF23XGaipMt6qnrmwxtpdmad1ien5l20hwrRfPU8hxQ=; c=relaxed/simple; s=hsbnp7p3ensaochzwyq5wwmceodymuwv; d=amazonses.com; t=1699313688; v=1; bh=CHMx6js1A7DX1G/1PSuCOIEFQCksaEnO1lr4JPlBK2Q=; h=From:To:Cc:Bcc:Subject:Date:Message-ID:MIME-Version:Content-Type:X-SES-RECEIPT; +X-SBRS: None +X-REMOTE-IP: 156.119.193.180 +Received: from cobdb-rep.cob.gtwy.dcn ([156.119.193.180]) + by icmecf101.gtwy.uscourts.gov with ESMTP; 06 Nov 2023 18:34:46 -0500 +Received: from cobdb-rep.cob.gtwy.dcn (localhost.localdomain [127.0.0.1]) + by cobdb-rep.cob.gtwy.dcn (8.14.7/8.14.7) with ESMTP id 3A6NXf08043071; + Mon, 6 Nov 2023 16:33:43 -0700 +Received: (from ecf_web@localhost) + by cobdb-rep.cob.gtwy.dcn (8.14.7/8.14.4/Submit) id 3A6NXRfY042221; + Mon, 6 Nov 2023 16:33:27 -0700 +Date: Mon, 6 Nov 2023 16:33:27 -0700 +X-Authentication-Warning: cobdb-rep.cob.gtwy.dcn: ecf_web set sender to cmecf-reply@cob.uscourts.gov using -f +MIME-Version:1.0 +From:cmecf-reply@cob.uscourts.gov +To:courtmail@cob.uscourts.gov +Message-Id:<48883293@cob.uscourts.gov> +Subject:23-14130-JGR Close Bankruptcy Case +Content-Type: text/html + +

This is an automatic e-mail message generated by the CM/ECF system. Please DO NOT RESPOND to this email because the mail box is unattended. +
***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 Colorado

+Notice of Electronic Filing +
+
+
The following transaction was received from dd entered on 11/6/2023 at 4:33 PM MST and filed on 11/6/2023 + +
+ + + + + + + + + +
Case Name: +Delta, LLC
Case Number:23-14130-JGR
WARNING: CASE CLOSED on 11/06/2023
Document Number: +33 +
+ + + + +

Docket Text: + +
+ORDER ACCEPTING TRUSTEE'S REPORT AND CLOSING CASE. It appearing to the Court that the Trustee has filed a report certifying that the estate in the above-captioned case has been fully administered and that no objections to the report have been filed within 30 days thereafter, it is ORDERED that pursuant to Rule 5009, Federal Rule of Bankruptcy Procedure, there is a presumption that the estate has been fully administered; that the trustee be and hereby is discharged; that all nonexempt property listed by the Debtor and not administered by the trustee is hereby deemed abandoned pursuant to 11 U.S.C. 554(c); and the case hereby is closed pursuant to 11 U.S.C. 350(a). IT IS FURTHER ORDERED that all pending motions requiring notice and a hearing for which no certificate has been tendered in accordance with L.B.R. 9013-1 are deemed abandoned for want of prosecution and denied without prejudice.. (dd) +

+ +

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

+ + +
+
+ + + + +
+23-14130-JGR Notice will be electronically mailed to: + + +
+ +
Scott K. Brown, II on behalf of Interested Party Kapitus Servicing Inc. +
sbrown@acjblaw.com, colleen@acjblaw.com +
+
Eric J. Langston on behalf of Debtor Delta, LLC +
x@y.com, x.gmail.com@recap.email +
+
Benjamin Sales on behalf of U.S. Trustee US Trustee +
benjamin.a.sales@usdoj.gov +
+
US Trustee +
USTPRegion19.DV.ECF@usdoj.gov +
+ +
+ +23-14130-JGR Notice will not be electronically mailed to: + + +
diff --git a/tests/examples/pacer/nef/s3/ctb_3.json b/tests/examples/pacer/nef/s3/ctb_3.json new file mode 100644 index 000000000..1eee7ad52 --- /dev/null +++ b/tests/examples/pacer/nef/s3/ctb_3.json @@ -0,0 +1,40 @@ +{ + "appellate": false, + "contains_attachments": false, + "court_id": "ctb", + "dockets": [ + { + "case_name": "Susanne P. Wahba", + "date_filed": null, + "docket_entries": [ + { + "date_filed": "2024-11-15", + "description": "Order Scheduling Initial Chapter 11 Case Management Conference. Hearing to be held on January 14, 2025 at 11:00 AM at United States Bankruptcy Court, 915 Lafayette Blvd., Room 123, Courtroom, Bridgeport, CT. (lw)", + "document_number": "8", + "document_url": "https://ecf.ctb.uscourts.gov/doc1/040015365979?pdf_header=&magic_num=64265763&de_seq_num=27&caseid=315519", + "pacer_case_id": "315519", + "pacer_doc_id": "040015365979", + "pacer_magic_num": "64265763", + "pacer_seq_no": "27", + "short_description": "Chapter 11 Case Management Conference/Status Conference" + } + ], + "docket_number": "24-50786", + "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": [ + { + "email_addresses": [ + "a@b.com", + "user@recap.email", + "USTPRegion02.NH.ECF@USDOJ.GOV" + ], + "name": "" + } + ] +} \ No newline at end of file diff --git a/tests/examples/pacer/nef/s3/ctb_3.txt b/tests/examples/pacer/nef/s3/ctb_3.txt new file mode 100644 index 000000000..8b789246b --- /dev/null +++ b/tests/examples/pacer/nef/s3/ctb_3.txt @@ -0,0 +1,120 @@ +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 4jcaqrthu48md98sh13qfdrrs00qs47f2c6pt801 + for user@recap.email; + Fri, 15 Nov 2024 19:02:52 +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.202 as permitted sender) client-ip=199.107.16.202; envelope-from=CTBECF_Courtmail@ctb.uscourts.gov; helo=icmecf102.gtwy.uscourts.gov; +Authentication-Results: amazonses.com; + spf=pass (spfCheck: domain of ctb.uscourts.gov designates 199.107.16.202 as permitted sender) client-ip=199.107.16.202; envelope-from=CTBECF_Courtmail@ctb.uscourts.gov; helo=icmecf102.gtwy.uscourts.gov; + dkim=pass header.i=@uscourts.gov; + dmarc=pass header.from=ctb.uscourts.gov; +X-SES-RECEIPT: AEFBQUFBQUFBQUFFTjV1TUVhM0RFQ1RHSmZ3eUZjODk1SWtublZhRFVNZ3E2RjFBaWFObkc4eHUwNHdaYXFwZ3l5aU5oemtkNjRkSVJQYktZblNlMnN2b1JUVlFyQ3BFc2JOWjJvWVhIeUtQSnhkVjVOV1J6S3ViUTM1NlJoeEVjMVJNK0ZpUzNCVXkza0JOMysrUGI1K1ZyTW1pSW14VHNMMnllaUdUQmFXNmdFR2I0ZVBqem11R0ZvTnNVSTg1TjJ4M3BkcWZhUjdXbnZoeWZjbnl2SmphcWt6dExpcHJBOWVvN1hSSXFzUjhkNGNaYTNSTnJyMG1vT0hOb1Z5ZVI2UmdjbS9iV0VzZUp1aXJRdklnSkR4VWFrMU5QaXlOUVhUd2ZvK3RXUE1iaWlCMk1VdFBGSDVpMjROM2llT1lPWStYWXowOUtjcU09 +X-SES-DKIM-SIGNATURE: a=rsa-sha256; q=dns/txt; b=jBkeLyPtD05u1CqIO+mZUXoOgIe8iTStTu3J3qVy0qPqQcCECQPK5wbuovS9/1RbS0HDnD8EbUBCtirKE53MHI/Vb6Yukyr+NBBrYNxhhEc7ETRkyF5MRQsgHFZy75IgAiWGiDxV7IZ8HRu/GDHp6cInEzcUoEDLODN9OSttzAA=; c=relaxed/simple; s=7v7vs6w47njt4pimodk5mmttbegzsi6n; d=amazonses.com; t=1731697373; v=1; bh=TBxFXYxd1rtRaqXBqt3fSuXV9IZLD1oFbr2pmDUzSWk=; 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=2591; q=dns/txt; + s=law1e; t=1731697372; x=1763233372; + h=date:x-authentication-warning:mime-version:from:to: + message-id:subject:content-type:x-sbrs:x-remote-ip; + bh=TBxFXYxd1rtRaqXBqt3fSuXV9IZLD1oFbr2pmDUzSWk=; + b=dqF4UeBEm42m6GHhR5k7Vs5zjCBiZnWSG63pm/ywkL8oFyoWHjVzEr4W + EHGjMVttQDUMsMMKgMnWnXhh1493T7MYGEbCPnucIKrI4QqCS3cGfKgr5 + vbMZRIi4iJJDR0+ZYn1+0W9mf+1OBCNSV6e2njRSVnSBAR15nfRLAn7pa + M/ZzUF+QI9/uPUZyLr/DJX8WPwn1RkMTPWQlNlHT5BK5jrPXpeFYvhzQH + P5YasI4CO4o1rmccbVhfLLX1mDNPoxmk9/ix+7cvGuinBfnIBGSSriG+i + S6ku6qXz7NxIzwE8/6Gnp62ZsYiH7e+13wZB3DAqbPQY4VHm2ePySWEfL + Q==; +X-SBRS: None +X-REMOTE-IP: 156.119.191.114 +Received: from ctbdb.ctb.gtwy.dcn ([156.119.191.114]) + by icmecf102.gtwy.uscourts.gov with ESMTP; 15 Nov 2024 14:02:51 -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 4AFJ2bsI017086; + Fri, 15 Nov 2024 14:02:37 -0500 +Received: (from ecf_web@localhost) + by ctbdb.ctb.gtwy.dcn (8.14.7/8.14.4/Submit) id 4AFJ2K9L016755; + Fri, 15 Nov 2024 14:02:20 -0500 +Date: Fri, 15 Nov 2024 14:02:20 -0500 +X-Authentication-Warning: ctbdb.ctb.gtwy.dcn: ecf_web set sender to CTBECF_Courtmail@ctb.uscourts.gov using -f +MIME-Version:1.0 +From:CTBECF_Courtmail@ctb.uscourts.gov +To:Courtmail@ctb.uscourts.gov +Message-Id:<15724769@ctb.uscourts.gov> +Subject:24-50786 Chapter 11 Case Management Conference/Status Conference +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 lw entered on 11/15/2024 at 2:02 PM EST and filed on 11/15/2024 + +
+ + + + + + + + + +
Case Name: +Susanne P. Wahba
Case Number:24-50786
Document Number: +8 +
+ + + + +

Docket Text: + +
+Order Scheduling Initial Chapter 11 Case Management Conference. Hearing to be held on January 14, 2025 at 11:00 AM at United States Bankruptcy Court, 915 Lafayette Blvd., Room 123, Courtroom, Bridgeport, CT. (lw) +

+ +

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

+ +Document description:Main Document +
Original filename:case managment.pdf +
Electronic document + Stamp: +
[STAMP bkecfStamp_ID=1018027260 [Date=11/15/2024] [FileNumber=15724767 +
-0] [4fb8fa35e41c54199b3079c1f6674c1e20017ad77b2affbc15d028b7132e05fa4 +
5324d7fa9b295fae2df73766a4d9ea3936d481e07df154c7486f6de75683068]] +
+ +
+
+ + + + +
+24-50786 Notice will be electronically mailed to: + + +
+ +
FirstName LastName on behalf of Debtor Susanne P. Wahba +
a@b.com, user@recap.email +
+
U. S. Trustee +
USTPRegion02.NH.ECF@USDOJ.GOV +
+ +
+ +24-50786 Notice will not be electronically mailed to: + + +
+ 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/dcb_3.json b/tests/examples/pacer/nef/s3/dcb_3.json new file mode 100644 index 000000000..973af4cc8 --- /dev/null +++ b/tests/examples/pacer/nef/s3/dcb_3.json @@ -0,0 +1,42 @@ +{ + "appellate": false, + "contains_attachments": true, + "court_id": "dcb", + "dockets": [ + { + "case_name": "1616 27th Street Flats L.L.C.", + "date_filed": null, + "docket_entries": [ + { + "date_filed": "2024-07-09", + "description": "Notice and Motion to Convert Case to Chapter 7 . Fee Amount $15, or in the alternative Motion to Dismiss Case Filed by U. S. Trustee for Region Four. Objections due by 7/31/2024.Hearing scheduled for 8/7/2024 at 01:00 PM at Courtroom 1 and Zoom; Contact aimee_mathewes@dcb.uscourts.gov for meeting code. Objections due by 7/31/2024.Hearing scheduled for 8/7/2024 at 01:00 PM at Courtroom 1 and Zoom; Contact aimee_mathewes@dcb.uscourts.gov for meeting code. (Attachments: (1) Notice of Motion and Hearing (2) Proposed Order Converting Case (3) Proposed Order Dismissing Case) (Eustis, Kristen)", + "document_number": "16", + "document_url": "https://ecf.dcb.uscourts.gov/doc1/04402863815?pdf_header=&magic_num=48605890&de_seq_num=50&caseid=49987", + "pacer_case_id": "49987", + "pacer_doc_id": "04402863815", + "pacer_magic_num": "48605890", + "pacer_seq_no": "50", + "short_description": "Motion to Convert Case to Chapter 7" + } + ], + "docket_number": "24-00221", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "ELG", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null + } + ], + "email_recipients": [ + { + "email_addresses": [ + "Kristen.S.Eustis@usdoj.gov", + "Robert.W.Ours@usdoj.gov", + "USTPRegion04.DC.ECF@USDOJ.GOV", + "c@e.com", + "c@d.com;a@b.com;a@notify.bestcase.com;user@recap.email" + ], + "name": "" + } + ] +} \ No newline at end of file diff --git a/tests/examples/pacer/nef/s3/dcb_3.txt b/tests/examples/pacer/nef/s3/dcb_3.txt new file mode 100644 index 000000000..58f51912b --- /dev/null +++ b/tests/examples/pacer/nef/s3/dcb_3.txt @@ -0,0 +1,133 @@ +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 focievj04l9tb4hf9gdjc6tmaqrhm0pa6ni7ei81 + for user@recap.email; + Tue, 09 Jul 2024 14:24:53 +0000 (UTC) +X-SES-Spam-Verdict: PASS +X-SES-Virus-Verdict: PASS +Received-SPF: pass (spfCheck: domain of dcb.uscourts.gov designates 199.107.16.200 as permitted sender) client-ip=199.107.16.200; envelope-from=ecf_dcb@dcb.uscourts.gov; helo=icmecf101.gtwy.uscourts.gov; +Authentication-Results: amazonses.com; + spf=pass (spfCheck: domain of dcb.uscourts.gov designates 199.107.16.200 as permitted sender) client-ip=199.107.16.200; envelope-from=ecf_dcb@dcb.uscourts.gov; helo=icmecf101.gtwy.uscourts.gov; + dmarc=none header.from=dcb.uscourts.gov; +X-SES-RECEIPT: AEFBQUFBQUFBQUFFS2NsamZJRnFQUE8yeGRETzVkcklLL1pwQTdNV05SZWltVzByb0JRditVcEVGN2svbXRNWVZnTG1OYWFsSGIzdHhNWGptdFV6cXd3Yi8yUHpoenFJdE1pVXFLZzRNVlV2RjluTXhSWVVrZGdFZVlNQ3pTbEtVRmpvVld4aStocmJmVHNwdFF2a0JERkltTW9QOHRyVzFOU1ErM0t3eXo0bHBWb3djdGNKcVdIdm4wbml1YTJhSVYzUmU4dWI4aURUQzMvcFRDWkdzc05kS2drbExTanRyZDRKbU1OUitMbE5rcU4vaXR3eGhUbE1wRVh0bWV5ejdXbHhPUlhPc1QzakFDQVlDcUlHTTd5b3R5Tk1WKzBEN0wwcG5WNVk2QkdzK0Q5YktqVXRzM0E9PQ== +X-SES-DKIM-SIGNATURE: a=rsa-sha256; q=dns/txt; b=iJv51c7RQsRtqYiHHwZTwwBEy54ZA5aqI+IVcy/7AdC2vhSi39HiTlEEVsiolJd4ElDAamN3+h0RZGOanFqOztmR46dagB4x0aamvR/nYXCNVQWSlKeHTAfH+FQBObVZDPzssQivg0NKqVBOm5DcGXoVIH8oZr+GUOcqQ2ueXi4=; c=relaxed/simple; s=7v7vs6w47njt4pimodk5mmttbegzsi6n; d=amazonses.com; t=1720535094; v=1; bh=ClIz5L+XKl+F+S2pfeOkr/D05mlrgYJZlKHjG15tzRw=; 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.113 +Received: from dcbdb.dcb.gtwy.dcn ([156.119.190.113]) + by icmecf101.gtwy.uscourts.gov with ESMTP; 09 Jul 2024 10:24:52 -0400 +Received: from dcbdb.dcb.gtwy.dcn (localhost.localdomain [127.0.0.1]) + by dcbdb.dcb.gtwy.dcn (8.14.7/8.14.7) with ESMTP id 469EO6Y3095708; + Tue, 9 Jul 2024 10:24:07 -0400 +Received: (from ecf_web@localhost) + by dcbdb.dcb.gtwy.dcn (8.14.7/8.14.4/Submit) id 469EO3Pq094963; + Tue, 9 Jul 2024 10:24:03 -0400 +Date: Tue, 9 Jul 2024 10:24:03 -0400 +X-Authentication-Warning: dcbdb.dcb.gtwy.dcn: ecf_web set sender to ecf_dcb@dcb.uscourts.gov using -f +MIME-Version:1.0 +From:ecf_dcb@dcb.uscourts.gov +To:courtmail@dcb.uscourts.gov +Message-Id:<2763973@dcb.uscourts.gov> +Subject:24-00221-ELG CH11 Motion to Convert Case to Chapter 7 - 1616 27th Street Flats L.L.C. +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

+ +

United States Bankruptcy Court for the District of Columbia

+Notice of Electronic Filing +
+
+
The following transaction was received from Kristen S. Eustis entered on 7/9/2024 at 10:24 AM EDT and filed on 7/9/2024 + +
+ + + + + + + + + +
Case Name: +1616 27th Street Flats L.L.C.
Case Number:24-00221-ELG
Document Number: +16 +
+ + + + +

Docket Text: + +
+Notice and Motion to Convert Case to Chapter 7 . Fee Amount $15, or in the alternative Motion to Dismiss Case Filed by U. S. Trustee for Region Four. Objections due by 7/31/2024.Hearing scheduled for 8/7/2024 at 01:00 PM at Courtroom 1 and Zoom; Contact aimee_mathewes@dcb.uscourts.gov for meeting code. Objections due by 7/31/2024.Hearing scheduled for 8/7/2024 at 01:00 PM at Courtroom 1 and Zoom; Contact aimee_mathewes@dcb.uscourts.gov for meeting code. (Attachments: # (1) Notice of Motion and Hearing # (2) Proposed Order Converting Case # (3) Proposed Order Dismissing Case) (Eustis, Kristen) +

+ +

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

+ +Document description:Main Document +
Original filename:1616 27th St Flats 24-00221 - MCD.pdf +
Electronic document + Stamp: +
[STAMP bkecfStamp_ID=1011211900 [Date=7/9/2024] [FileNumber=2763971-0] +
[4869d5dd3abf564394a730e95ffbf8564cd15fc9d7d209276d21a2b880fe9d3219ee +
e9624aadc50d1a27ab9a1dec3af38688b326bbdf039de56668a5816599f9]] +
+Document description: Notice of Motion and Hearing +
Original filename:C:\fakepath\1616 27th St. Flats 24-00221 - NOH MCD.pdf +
Electronic document + Stamp: +
[STAMP bkecfStamp_ID=1011211900 [Date=7/9/2024] [FileNumber=2763971-1] +
[527d813ffaa7ae42a5a100f064ce00e89e8c82cbbe6bf1f035799bcc9620a31b35d4 +
daae067963650f744f6aaf1e2e3e0a97aaaf9dd464a398a1003d286ac572]] +
+Document description: Proposed Order Converting Case +
Original filename:C:\fakepath\1616 27th St. Flats 24-00221 - Proposed Order Convert Case.pdf +
Electronic document + Stamp: +
[STAMP bkecfStamp_ID=1011211900 [Date=7/9/2024] [FileNumber=2763971-2] +
[37c5e9cea94988f999d845275fa07b219915398df13168ae702e84466c16c0e17b25 +
5b2fafb0fec9ec9a9d8ef197e0d8e85f6e9e47571e27bfd8c7b526c29f59]] +
+Document description: Proposed Order Dismissing Case +
Original filename:C:\fakepath\1616 27th St. Flats 24-00221 - Proposed Order to Dismiss.pdf +
Electronic document + Stamp: +
[STAMP bkecfStamp_ID=1011211900 [Date=7/9/2024] [FileNumber=2763971-3] +
[934e9d099f67b9ccb0888f1541c0a4c615c098fa114b7aeaf8c2cacf3f2c06c359a4 +
ac41b78176bcf674f35ec9f8fb83366e23300e18baf7d81408a9fac70e9b]] +
+ +
+
+ + + + +
+24-00221-ELG Notice will be electronically mailed to: + + +
+ +
Kristen S. Eustis on behalf of U.S. Trustee U. S. Trustee for Region Four +
Kristen.S.Eustis@usdoj.gov, Robert.W.Ours@usdoj.gov +
+
+
U. S. Trustee for Region Four +
USTPRegion04.DC.ECF@USDOJ.GOV +
+
FirstName LastName on behalf of Creditor WCP Fund I LLC +
c@e.com, c@d.com;a@b.com;a@notify.bestcase.com;user@recap.email +
+ +
+ +24-00221-ELG Notice will not be electronically mailed to: + + +
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..a16bbe309 --- /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-MOR" + } + ], + "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/ianb_2.json b/tests/examples/pacer/nef/s3/ianb_2.json new file mode 100644 index 000000000..de8810140 --- /dev/null +++ b/tests/examples/pacer/nef/s3/ianb_2.json @@ -0,0 +1,39 @@ +{ + "appellate": false, + "contains_attachments": false, + "court_id": "ianb", + "dockets": [ + { + "case_name": "Mercy Hospital, Iowa City, Iowa", + "date_filed": null, + "docket_entries": [ + { + "date_filed": "2024-06-07", + "description": "Findings of Fact, Conclusions of Law, and Order Confirming Debtors' Joint Chapter 11 Plan of Liquidation Ordered on 6/7/2024. (related document(s)[929] Plan, [993] Plan, Disclosure Statement, [1050] Plan) (nbec)", + "document_number": "1114", + "document_url": "https://ecf.ianb.uscourts.gov/doc1/07404406548?pdf_header=&magic_num=85473386&de_seq_num=4579&caseid=108151", + "pacer_case_id": "108151", + "pacer_doc_id": "07404406548", + "pacer_magic_num": "85473386", + "pacer_seq_no": "4579", + "short_description": "Order Confirming Chapter 11 Plan" + } + ], + "docket_number": "23-00623", + "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": [ + { + "email_addresses": [ + "jessica.board@heidmanlaw.com", + "Tina.Roberts@heidmanlaw.com;jessica.braunger@heidmanlaw.com" + ], + "name": "" + } + ] +} \ No newline at end of file diff --git a/tests/examples/pacer/nef/s3/ianb_2.txt b/tests/examples/pacer/nef/s3/ianb_2.txt new file mode 100644 index 000000000..e133864e3 --- /dev/null +++ b/tests/examples/pacer/nef/s3/ianb_2.txt @@ -0,0 +1,94 @@ +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 ugnddj3kc9h37vb98bravr1ufqfiolpsoqsik501 + for user@recap.email; + Fri, 07 Jun 2024 21:35:37 +0000 (UTC) +X-SES-Spam-Verdict: PASS +X-SES-Virus-Verdict: PASS +Received-SPF: pass (spfCheck: domain of ianb.uscourts.gov designates 199.107.16.200 as permitted sender) client-ip=199.107.16.200; envelope-from=cmecf@ianb.uscourts.gov; helo=icmecf101.gtwy.uscourts.gov; +Authentication-Results: amazonses.com; + spf=pass (spfCheck: domain of ianb.uscourts.gov designates 199.107.16.200 as permitted sender) client-ip=199.107.16.200; envelope-from=cmecf@ianb.uscourts.gov; helo=icmecf101.gtwy.uscourts.gov; + dmarc=none header.from=ianb.uscourts.gov; +X-SES-RECEIPT: AEFBQUFBQUFBQUFGVXB0Wk5CY3p0VnB0VjJmTWNybE1Cb0tCakxhVmN1WFFDSGg4cUJvOWtPc0xRMlFqTjZmeVRzRUNSeHE2UFRrdW1wUkx6YzMxcEtzK1Z3VzVyQVJsK0QzTTBvKys3TnZmNm52MGc2bnkwbEFLMmJWWElPNXdHQlIwNHRtQmZxeUI3MTdLT3pDVlptYUlSdVFlWG5GeVN0T2dPelA2ZHFadUh0anB3dk5XaDNUZ0dCeU1zTVI1enhZeHp5TnF5R1h2OVllUHFtWVRjN1R5WXA3QU1zek4zTnJhSmthSElqZk9nR3ROK2JMK24zU0dBakpwY2cvdUlTYUJsUEUxdW1EcEtqcWNoQ0RLSE1nNjFSNmd2cm05a1NMR2YxeWRUVFp1RlhjSTZ0TWhmU3c9PQ== +X-SES-DKIM-SIGNATURE: a=rsa-sha256; q=dns/txt; b=2VNGxWppb9ezBlmzejFwug/2Wi6cS0UMfO/U3mmomWRHrF58Zc3vwdPPcYOMpw1hBQoIWqv5BbFKMqVv7w/wBPimwyPvDF7p8k6xJCnsbBugTeYxGFjwfbGIj9Y/Vxu1tBy4ehYMFgkHqNoVjj6/ptMaXBeL7J4YV9NDGEuC0ic=; c=relaxed/simple; s=7v7vs6w47njt4pimodk5mmttbegzsi6n; d=amazonses.com; t=1717796138; v=1; bh=zNCGb7Lp20bGQOlD04NdeoV0gD2EpLb5svAW8jTviuM=; 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.127 +Received: from ianbdb.ianb.gtwy.dcn ([156.119.56.127]) + by icmecf101.gtwy.uscourts.gov with ESMTP; 07 Jun 2024 17:35:36 -0400 +Received: from ianbdb.ianb.gtwy.dcn (localhost.localdomain [127.0.0.1]) + by ianbdb.ianb.gtwy.dcn (8.14.7/8.14.7) with ESMTP id 457LY5e1055029; + Fri, 7 Jun 2024 16:34:19 -0500 +Received: (from ecf_web@localhost) + by ianbdb.ianb.gtwy.dcn (8.14.7/8.14.4/Submit) id 457LXorj054796; + Fri, 7 Jun 2024 16:33:50 -0500 +Date: Fri, 7 Jun 2024 16:33:50 -0500 +MIME-Version:1.0 +From:cmecf@ianb.uscourts.gov +To:courtmail@ianb.uscourts.gov +Message-Id:<4516908@ianb.uscourts.gov> +Subject:23-00623 Order Confirming Chapter 11 Plan +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.

+ + + + +

United States Bankruptcy Court

+ +

Northern District of Iowa

+Notice of Electronic Filing +
+
+
The following transaction was received from nbec entered on 6/7/2024 at 4:33 PM CDT and filed on 6/7/2024 + +
+ + + + + + + + + +
Case Name: +Mercy Hospital, Iowa City, Iowa
Case Number:23-00623
Document Number: +1114 +
+ + + + +

Docket Text: + +
+Findings of Fact, Conclusions of Law, and Order Confirming Debtors' Joint Chapter 11 Plan of Liquidation Ordered on 6/7/2024. (related document(s)[929] Plan, [993] Plan, Disclosure Statement, [1050] Plan) (nbec) +

+ +

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

+ +Document description:Main Document +
Original filename:23-623order.pdf +
Electronic document + Stamp: +
[STAMP bkecfStamp_ID=993675052 [Date=6/7/2024] [FileNumber=4516906-0] +
[d845946fdd0c2101a63e2624a3f2aa37418a5dd40162f70435d03c799c436c8b94a68 +
90b14777ce5ccafde7608c17f49b50723bb485352da278c33e2ab330900]] +
+ +
+
+ + + + +
+23-00623 Notice will be electronically mailed to: + + +
+ +
Jessica A Board on behalf of Creditor UnitedHealth Group +
jessica.board@heidmanlaw.com, Tina.Roberts@heidmanlaw.com;jessica.braunger@heidmanlaw.com +
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/nceb_1.json b/tests/examples/pacer/nef/s3/nceb_1.json new file mode 100644 index 000000000..afb425c4a --- /dev/null +++ b/tests/examples/pacer/nef/s3/nceb_1.json @@ -0,0 +1,38 @@ +{ + "appellate": false, + "contains_attachments": false, + "court_id": "nceb", + "dockets": [ + { + "case_name": "Waldrep Jr., Trustee v. Reboot, Inc. d/b/a HIPAA GUARD", + "date_filed": null, + "docket_entries": [ + { + "date_filed": "2023-08-31", + "description": "Motion to Extend Time to File Response, filed by James S. Livermon III on behalf of Reboot, Inc. d/b/a HIPAA GUARD, Michael Reece, Rural Lab Outreach, LLC. (Livermon, James)", + "document_number": "45", + "document_url": "https://ecf.nceb.uscourts.gov/doc1/130024615454?pdf_header=&magic_num=4879393&de_seq_num=229&caseid=328908", + "pacer_case_id": "328908", + "pacer_doc_id": "130024615454", + "pacer_magic_num": "4879393", + "pacer_seq_no": "229", + "short_description": "Motion to Extend" + } + ], + "docket_number": "22-00105", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "JNC", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "5" + } + ], + "email_recipients": [ + { + "email_addresses": [ + "user@domain.com" + ], + "name": "" + } + ] +} \ No newline at end of file diff --git a/tests/examples/pacer/nef/s3/nceb_1.txt b/tests/examples/pacer/nef/s3/nceb_1.txt new file mode 100644 index 000000000..fa0660e88 --- /dev/null +++ b/tests/examples/pacer/nef/s3/nceb_1.txt @@ -0,0 +1,95 @@ +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 iki225r24aaldspqimhfuqeuee929pvp56bg8eg1 + for user@recap.email; + Thu, 31 Aug 2023 18:23:11 +0000 (UTC) +X-SES-Spam-Verdict: PASS +X-SES-Virus-Verdict: PASS +Received-SPF: pass (spfCheck: domain of nceb.uscourts.gov designates 199.107.16.200 as permitted sender) client-ip=199.107.16.200; envelope-from=NCEB_NOF@nceb.uscourts.gov; helo=icmecf101.gtwy.uscourts.gov; +Authentication-Results: amazonses.com; + spf=pass (spfCheck: domain of nceb.uscourts.gov designates 199.107.16.200 as permitted sender) client-ip=199.107.16.200; envelope-from=NCEB_NOF@nceb.uscourts.gov; helo=icmecf101.gtwy.uscourts.gov; + dmarc=none header.from=nceb.uscourts.gov; +X-SES-RECEIPT: AEFBQUFBQUFBQUFGM2tWSFBhWkdFY1RQZGhzNWtyTDVjQjJwQ0lXakhsQTRQS0hqa1NoRktab2htQm1RNkdXem4raE44QzN5cGtNQkFzQml0TXdzZldCdlFVeSt4bEJTVnpYTnN0NElKSTBrbzJCZ3hydlFRVTRnYlNTdmovMVFER0hsN0hHZVUwckp2S254T21IbFJCbFdpM2hHVjNOWkIwZTBUYmtXei9kWDA0V0lEdlN0QzVWdHZyZUNvS2pqNHZ5M0hwWitubnBSVjRqdDJZeEJYM01pc3BvcnF1VXdZRDZFd1NVWjBQVXRKMll5dUZLeHJoenZKbzJIQXJXNkY2bVBNUHZjQzUzb3ZPK2orT202Zm9mZmlqTGZOTG9yWk5xKzA3OGI0VXhxS2h3KzlaVTkyeFE9PQ== +X-SES-DKIM-SIGNATURE: a=rsa-sha256; q=dns/txt; b=PkvIcmFmh0AgR87Rja31Eb1I5JzKqYX95nwFleS480pEarS91bN3ozLvqBXgYhaMCItCmRbtB/3mfv3rdNvY3I1e44CA7y+e/UgLW1BKPH2bQckSJlpMR+tJBCFqWEdBQGrzpyvwmPiwONdFNzkLUI+2gbaurF8qciFWxlPLWNc=; c=relaxed/simple; s=hsbnp7p3ensaochzwyq5wwmceodymuwv; d=amazonses.com; t=1693506192; v=1; bh=35WQj4XmoTgE+Z7tVCs1aVHXvkl6QEdldz6jeL7wRmQ=; 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.100 +Received: from ncebdb.nceb.gtwy.dcn ([156.119.190.100]) + by icmecf101.gtwy.uscourts.gov with ESMTP; 31 Aug 2023 14:23:11 -0400 +Received: from ncebdb.nceb.gtwy.dcn (localhost.localdomain [127.0.0.1]) + by ncebdb.nceb.gtwy.dcn (8.14.7/8.14.7) with ESMTP id 37VIMQ5L016916; + Thu, 31 Aug 2023 14:22:26 -0400 +Received: (from ecf_web@localhost) + by ncebdb.nceb.gtwy.dcn (8.14.7/8.14.4/Submit) id 37VIM0Ad015885; + Thu, 31 Aug 2023 14:22:00 -0400 +Date: Thu, 31 Aug 2023 14:22:00 -0400 +X-Authentication-Warning: ncebdb.nceb.gtwy.dcn: ecf_web set sender to NCEB_NOF@nceb.uscourts.gov using -f +MIME-Version:1.0 +From:NCEB_NOF@nceb.uscourts.gov +To:NCEB_BNC@nceb.uscourts.gov +Message-Id:<26182533@nceb.uscourts.gov> +Subject:22-00105-5-JNC Motion to Extend +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 North Carolina

+Notice of Electronic Filing +
+
+
The following transaction was received from FirstName LastName entered on 8/31/2023 at 2:21 PM EDT and filed on 8/31/2023 + +
+ + + + + + + + + +
Case Name: +Waldrep Jr., Trustee v. Reboot, Inc. d/b/a HIPAA GUARD et al
Case Number:22-00105-5-JNC
Document Number: +45 +
+ + + + +

Docket Text: + +
+ Motion to Extend Time to File Response, filed by James S. Livermon III on behalf of Reboot, Inc. d/b/a HIPAA GUARD, Michael Reece, Rural Lab Outreach, LLC. (Livermon, James) +

+ +

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

+ +Document description:Main Document +
Original filename:REBOOT - motion to extend time to respond to discovery.pdf +
Electronic document + Stamp: +
[STAMP bkecfStamp_ID=1033500319 [Date=8/31/2023] [FileNumber=26182531- +
0] [ae7ce3acea4e7a9aa55a15730cedfc46cadc2ccd9176b17f9ffddad9cefd366d3f +
b67a1d79c3eca1fd7ff9d5603f2ffe5f25f42fbec6b6bca63fce1bf172c111]] +
+ +
+
+ + + + +
+22-00105-5-JNC Notice will be electronically mailed to: + + +
+ +
FirstName LastName on behalf of Plaintiff Thomas W. Waldrep Jr., Trustee +
user@domain.com +
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_2.json b/tests/examples/pacer/nef/s3/nhb_2.json new file mode 100644 index 000000000..1f7d28055 --- /dev/null +++ b/tests/examples/pacer/nef/s3/nhb_2.json @@ -0,0 +1,39 @@ +{ + "appellate": false, + "contains_attachments": false, + "court_id": "nhb", + "dockets": [ + { + "case_name": "Mykle Lepene", + "date_filed": null, + "docket_entries": [ + { + "date_filed": "2024-07-16", + "description": "Chapter 13 Trustee's Interim Report Upon Completion of Plan Payments . (Sumski, Lawrence)", + "document_number": "88", + "document_url": "https://ecf.nhb.uscourts.gov/doc1/11606636788?pdf_header=&magic_num=97314543&de_seq_num=304&caseid=117776", + "pacer_case_id": "117776", + "pacer_doc_id": "11606636788", + "pacer_magic_num": "97314543", + "pacer_seq_no": "304", + "short_description": "Chapter 13 Trustee's Interim Report Upon Completion of Plan Payments (batch)" + } + ], + "docket_number": "21-10245", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "BAH", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null + } + ], + "email_recipients": [ + { + "email_addresses": [ + "a@b.com", + "c@d.com;user@recap.email" + ], + "name": "" + } + ] +} \ No newline at end of file diff --git a/tests/examples/pacer/nef/s3/nhb_2.txt b/tests/examples/pacer/nef/s3/nhb_2.txt new file mode 100644 index 000000000..0860eb677 --- /dev/null +++ b/tests/examples/pacer/nef/s3/nhb_2.txt @@ -0,0 +1,103 @@ +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 a58aacrokcq1pbnj9v5bgo20vofr706p14lbj1o1 + for user@recap.email; + Tue, 16 Jul 2024 17:24:12 +0000 (UTC) +X-SES-Spam-Verdict: PASS +X-SES-Virus-Verdict: PASS +Received-SPF: pass (spfCheck: domain of nhb.uscourts.gov designates 199.107.16.202 as permitted sender) client-ip=199.107.16.202; envelope-from=ecf_mail@nhb.uscourts.gov; helo=icmecf102.gtwy.uscourts.gov; +Authentication-Results: amazonses.com; + spf=pass (spfCheck: domain of nhb.uscourts.gov designates 199.107.16.202 as permitted sender) client-ip=199.107.16.202; envelope-from=ecf_mail@nhb.uscourts.gov; helo=icmecf102.gtwy.uscourts.gov; + dmarc=none header.from=nhb.uscourts.gov; +X-SES-RECEIPT: AEFBQUFBQUFBQUFFRUo3VnJ0UWZIV0tiZDVVMVErVmhtaDBGWHlTTkZGaU1pVmxQbElXNjA4UnBIcXlXdEMzWmxSMjFCU3ozYXlpd29ZejNJWW9XNjFyZG5ySXNFL2VVVk5WN1pxZnpxNEhmRTlONG14Uk9uTHhoWnRsQ2EzSVlFQThGME5kMHlXU2ZWRTdWVXViQ3FBZWZUL01VM1FmQXRCQ1M5VWMweGJ6K1I2WWVJbHgvYnQySFh5U0RQOVJqVzhMejVHZkplYm01L1BYR002U1Jxc2lUVmVBZi9OanE5N3ZjWWZsTU9HSUdyWWhIakRFT0tDN25sMjYycDV0bWhOeDJUY0d2QUlpR1BtdzR5WHFDVkhXMHRMMTlxaDBZSXNOU0pVMnZ4RkQyc09uZzdvSzAyelE9PQ== +X-SES-DKIM-SIGNATURE: a=rsa-sha256; q=dns/txt; b=PJzgZyo8jBN5lwn2HjQw8iSZjZvBYr57iDGW3l+hHG5YGzICfLvlvV0+gYChRUjsV7krLuowsnjj0trS+4WyTlopcksbgWwgedUQjMgY6VyDKz92LWJMBPcJxo9fSEvxcfHRqrEZN19APYTdGteeumkHyqymcAEAJgw/DHQocGE=; c=relaxed/simple; s=7v7vs6w47njt4pimodk5mmttbegzsi6n; d=amazonses.com; t=1721150653; v=1; bh=wjoevynVWg4iX/6FdN8SJUhUe1rXkdm749SV6hgDVE0=; 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.55 +Received: from nhbdb.nhb.gtwy.dcn ([156.119.190.55]) + by icmecf102.gtwy.uscourts.gov with ESMTP; 16 Jul 2024 13:24:12 -0400 +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 46GHNQgE002301 + for ; Tue, 16 Jul 2024 13:23:28 -0400 +Received: (from ecf_web@localhost) + by nhbdb.nhb.gtwy.dcn (8.14.7/8.14.4/Submit) id 46GHMrPs000905; + Tue, 16 Jul 2024 13:22:53 -0400 +Date: Tue, 16 Jul 2024 13:22:53 -0400 +MIME-Version:1.0 +From:ecf_mail@nhb.uscourts.gov +To:cdonais@recap.email +Message-Id:<6625721@nhb.uscourts.gov> +Subject:21-10245-BAH Chapter 13 Mykle Lepene Chapter 13 Trustee's Interim Report Upon Completion of Plan Payments (batch) +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 Sumski, Lawrence entered on 7/16/2024 at 1:22 PM EDT and filed on 7/16/2024 + +
+ + + + + + + + + +
Case Name: +Mykle Lepene
Case Number:21-10245-BAH
Document Number: +88 +
+ + + + +

Docket Text: + +
+ Chapter 13 Trustee's Interim Report Upon Completion of Plan Payments . (Sumski, Lawrence) +

+ +

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

+ + +
Case Number: 21-10245-BAH +
Document description: +
Original filename:C:\fakepath\21-10245 xPleading Request for Discharge - 1 Debtor.pdf +
Electronic document + Stamp: +
[STAMP bkecfStamp_ID=988526710 [Date=7/16/2024] [FileNumber=6625704-0] +
[83498e663c416586ea579ac4056fbb8dad078ce30bcd1a6a2cd3e1a6275ea877404e +
cb70eb3ea865553cca825e4f7761ee7182d9ed14636945559eb91be0050e]] +
+ +
+
+ + + + +
+21-10245-BAH Notice will be electronically mailed to: + + +
+ +
Craig S. Donais on behalf of Creditor Eliza Conley-Lepene +
a@b.com, c@d.com;user@recap.email +
+
+ +
+ +21-10245-BAH Notice will not be electronically mailed to: + + 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/okeb_3.json b/tests/examples/pacer/nef/s3/okeb_3.json new file mode 100644 index 000000000..7d110814f --- /dev/null +++ b/tests/examples/pacer/nef/s3/okeb_3.json @@ -0,0 +1,39 @@ +{ + "appellate": false, + "contains_attachments": true, + "court_id": "okeb", + "dockets": [ + { + "case_name": "C M Heavy Machinery, LLC", + "date_filed": null, + "docket_entries": [ + { + "date_filed": "2024-11-22", + "description": "Amended Chapter 11 Monthly Operating Report for the Month Ending: 10/31/2024 Filed by FirstName LastName on behalf of C M Heavy Machinery, LLC. (Attachments: (1) P&L (2) Balance Sheet (3) Reconciliation Report (4) Statement (1) (5) Statement (2)) (LastName, FirstName)", + "document_number": "52", + "document_url": "https://ecf.okeb.uscourts.gov/doc1/14404609723?pdf_header=&magic_num=39816587&de_seq_num=190&caseid=89920", + "pacer_case_id": "89920", + "pacer_doc_id": "14404609723", + "pacer_magic_num": "39816587", + "pacer_seq_no": "190", + "short_description": "Chapter 11 Monthly Operating Report UST Form 11-MOR" + } + ], + "docket_number": "24-80617", + "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": [ + { + "email_addresses": [ + "aa@b.com", + "c@d.com" + ], + "name": "" + } + ] +} \ No newline at end of file diff --git a/tests/examples/pacer/nef/s3/okeb_3.txt b/tests/examples/pacer/nef/s3/okeb_3.txt new file mode 100644 index 000000000..afc4c04c6 --- /dev/null +++ b/tests/examples/pacer/nef/s3/okeb_3.txt @@ -0,0 +1,148 @@ +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 nns9vihfa20493p2a204o0v9ss3aisnnthvupkg1 + for user@recap.email; + Fri, 22 Nov 2024 14:37:01 +0000 (UTC) +X-SES-Spam-Verdict: PASS +X-SES-Virus-Verdict: PASS +Received-SPF: pass (spfCheck: domain of okeb.uscourts.gov designates 199.107.16.202 as permitted sender) client-ip=199.107.16.202; envelope-from=CMECF_help@okeb.uscourts.gov; helo=icmecf102.gtwy.uscourts.gov; +Authentication-Results: amazonses.com; + spf=pass (spfCheck: domain of okeb.uscourts.gov designates 199.107.16.202 as permitted sender) client-ip=199.107.16.202; envelope-from=CMECF_help@okeb.uscourts.gov; helo=icmecf102.gtwy.uscourts.gov; + dkim=pass header.i=@uscourts.gov; + dmarc=pass header.from=okeb.uscourts.gov; +X-SES-RECEIPT: AEFBQUFBQUFBQUFINGtMYjhiVVNtNlJtdGl4YkRpWkdsVnEyMHkwdmtxcjRJbWhQRnBvR28wajdmbElsKzVqY0hPdEFVazJETmkxV1VUcU9XYXVRQkhlSjluamNNQldVV3lMZkFuSG9BV0M1YXlyaXFjVXE1Zm9OVFBYdXBrY2hzRlVZQ2VMbjY0czFzQnY1ajY3Qlk1cXpUWUREemh4TDZBZElDeW9qQzhGZEFkMUI3Sk1ia0htV0hEeW9icDZzWDVvR09mZUlmS0JDQ1BEWndlYzFRMGNoaEpic25IMmJCdEFzbTVvOTVZQmtMNWx3TkEvQlYrZkYwTDcrOGc4UWVpNXkzR0hYYzhDT3p4UGZ2MmNCZ1pIekJ3dVprZUlqNUUzZTRuN3FWTFRXUlRacmRSditzYlE9PQ== +X-SES-DKIM-SIGNATURE: a=rsa-sha256; q=dns/txt; b=iw6wO3Ta+ZqB2uhraFXYDQ6Iaai9yNsw+ato3FuQrLeFsFCxdJ25BxTsJIjFjETqr+3wIaFqKJtBqwBONIBgx1JTGTryDFwag8oq7pXKFZYcp6yrrqrrtXOjdLO2JRhHP6WK/8zSTOMf98R8l+2205/cULMTcgityUFqMQeSZVs=; c=relaxed/simple; s=7v7vs6w47njt4pimodk5mmttbegzsi6n; d=amazonses.com; t=1732286222; v=1; bh=Boz6pPDiJT2GWGU3IY79ruHinCd/iBL926Q5iADh9b4=; 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=5939; q=dns/txt; + s=law1e; t=1732286221; x=1763822221; + h=date:mime-version:from:to:message-id:subject: + content-type:x-sbrs:x-remote-ip; + bh=Boz6pPDiJT2GWGU3IY79ruHinCd/iBL926Q5iADh9b4=; + b=IuTZFg7jMpA/YsPixrsZ2iWC66T8JpZMgaA61dHDEYQI1/quaqgnwkh5 + pPcECT5Yk22PKpPtyP34OyPBP0m1Z2ma8qHQKJnV8S8etmNehTqCQebtr + tJe6YVThCuFVylGEd/wz7l+tVNEPun0dV9BdGvrccm+Q8qCbIdX5DMT0t + zUzy5yVNDCtqP3V+YCxgx3gqLA6sVUJOVKYtYzpMxtwkhBcwtggLsYK5L + /oH3XtFrIG4JzYxYV1wY+cvCg/DjxyFVILKtY0n9sznkMDJlZDujCjaF4 + z5fmsWK8G4Ds4Dr6hk++9R+RbjE3ZF3Zn5aZxC7bGczGgKqs+QSTmcjFj + w==; +X-SBRS: None +X-REMOTE-IP: 156.119.56.93 +Received: from okebdb.okeb.gtwy.dcn ([156.119.56.93]) + by icmecf102.gtwy.uscourts.gov with ESMTP; 22 Nov 2024 09:37:00 -0500 +Received: from okebdb.okeb.gtwy.dcn (localhost.localdomain [127.0.0.1]) + by okebdb.okeb.gtwy.dcn (8.14.7/8.14.7) with ESMTP id 4AMEatTs009212; + Fri, 22 Nov 2024 08:36:56 -0600 +Received: (from ecf_web@localhost) + by okebdb.okeb.gtwy.dcn (8.14.7/8.14.4/Submit) id 4AMEaEQJ008164; + Fri, 22 Nov 2024 08:36:14 -0600 +Date: Fri, 22 Nov 2024 08:36:14 -0600 +MIME-Version:1.0 +From:CMECF_help@okeb.uscourts.gov +To:Courtmail@okeb.uscourts.gov +Message-Id:<4689891@okeb.uscourts.gov> +Subject:24-80617 Chapter 11 Monthly Operating Report UST Form 11-MOR +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 Oklahoma

+Notice of Electronic Filing +
+
+
The following transaction was received from Maurice VerStandig entered on 11/22/2024 at 8:36 AM CST and filed on 11/22/2024 + +
+ + + + + + + + + +
Case Name: +C M Heavy Machinery, LLC
Chapter:11
Case Number:24-80617
Document Number: +52 +
+ + + + +

Docket Text: + +
+Amended Chapter 11 Monthly Operating Report for the Month Ending: 10/31/2024 Filed by FirstName LastName on behalf of C M Heavy Machinery, LLC. (Attachments: # (1) P&L # (2) Balance Sheet # (3) Reconciliation Report # (4) Statement (1) # (5) Statement (2)) (LastName, FirstName) +

+ +

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

+ +Document description:Main Document +
Original filename:UST Form 11-MOR Signed .pdf +
Electronic document + Stamp: +
[STAMP bkecfStamp_ID=1022787214 [Date=11/22/2024] [FileNumber=4689889- +
0] [b59cf7692837f334c7dafd6f5f3003c8856ba5462eddeb6b6751f02ccc849768d7 +
25fb0a5f4be7135dc8bc77c08157404dd75a3355d6a4d40f6f0eabd6d95dab]] +
+Document description: P&L +
Original filename:C:\fakepath\Oct 24 P&L CM Heavy.pdf +
Electronic document + Stamp: +
[STAMP bkecfStamp_ID=1022787214 [Date=11/22/2024] [FileNumber=4689889- +
1] [3f715f70d5b604cafeb89880a7e772573c90b13df0fdbca5579824610f0884d791 +
38df6b30e5f35826268cb320e3ffeddef3afeecd6a663761219fe3f03a36f2]] +
+Document description: Balance Sheet +
Original filename:C:\fakepath\BalanceSheet-2.pdf +
Electronic document + Stamp: +
[STAMP bkecfStamp_ID=1022787214 [Date=11/22/2024] [FileNumber=4689889- +
2] [4702bd1f33b7696b207c130d8f31dad08207cf05acc12fd6900d5687cd0931a803 +
730b326dc236121a09ccd8df13343b0bd0bbc0a770b6953661b9b4f9563651]] +
+Document description: Reconciliation Report +
Original filename:C:\fakepath\Oct 24 Reconile Report.pdf +
Electronic document + Stamp: +
[STAMP bkecfStamp_ID=1022787214 [Date=11/22/2024] [FileNumber=4689889- +
3] [5b130c1237985b504e6d8a0e70a325cf50f3e8743b75d1dd41afae2a9d68b4c87a +
7c8c6ca46a5564bb51b276261e712a2557af17c07ea20348a17fd0ca5534cb]] +
+Document description: Statement (1) +
Original filename:C:\fakepath\OCT 24 Check Reg Pg 1.pdf +
Electronic document + Stamp: +
[STAMP bkecfStamp_ID=1022787214 [Date=11/22/2024] [FileNumber=4689889- +
4] [a70edef857cc8c1e1da277410b0493247ac2bb740ca65201694891edf35f0f57f2 +
d26f7f28a86738d0ce2fa79fcdc85ce0f3090c9ba6409e4ce5ec74a2902752]] +
+Document description: Statement (2) +
Original filename:C:\fakepath\Oct 24 Check Reg Pg 2.pdf +
Electronic document + Stamp: +
[STAMP bkecfStamp_ID=1022787214 [Date=11/22/2024] [FileNumber=4689889- +
5] [90b798a62101749dab9f1823a63b1b0f7404022a1f06babe8340b2563fb0b031f5 +
9578313b67e8b2e1a580984ebc4dc87ab0e810ea7fe1c3ae101b835dc3f906]] +
+ +
+
+ + + + +
+24-80617 Notice will be electronically mailed to: + + +
+ +
FirstName LastName on behalf of Creditor Great Plains National Bank +
aa@b.com, c@d.com +
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_3.json index 7f7ab72d5..330d2c17e 100644 --- a/tests/examples/pacer/nef/s3/paeb_3.json +++ b/tests/examples/pacer/nef/s3/paeb_3.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", diff --git a/tests/examples/pacer/nef/s3/paeb_4.json b/tests/examples/pacer/nef/s3/paeb_4.json new file mode 100644 index 000000000..13386069d --- /dev/null +++ b/tests/examples/pacer/nef/s3/paeb_4.json @@ -0,0 +1,39 @@ +{ + "appellate": false, + "contains_attachments": false, + "court_id": "paeb", + "dockets": [ + { + "case_name": "Kervince Markenzy Michel", + "date_filed": null, + "docket_entries": [ + { + "date_filed": "2024-02-01", + "description": "Chapter 13 Plan Filed by Kervince Markenzy Michel. (FirstName, LastName)", + "document_number": "17", + "document_url": "https://ecf.paeb.uscourts.gov/doc1/152032523670?pdf_header=&magic_num=29282863&de_seq_num=78&caseid=510868", + "pacer_case_id": "510868", + "pacer_doc_id": "152032523670", + "pacer_magic_num": "29282863", + "pacer_seq_no": "78", + "short_description": "Chapter 13 Plan" + } + ], + "docket_number": "23-13878", + "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": [ + { + "email_addresses": [ + "mail@a.com", + "a@domain.net;a@recap.email;ecf@a.enterprises;ecf@a.co;ecf@b.gg" + ], + "name": "" + } + ] +} \ No newline at end of file diff --git a/tests/examples/pacer/nef/s3/paeb_4.txt b/tests/examples/pacer/nef/s3/paeb_4.txt new file mode 100644 index 000000000..3c4b0dd79 --- /dev/null +++ b/tests/examples/pacer/nef/s3/paeb_4.txt @@ -0,0 +1,95 @@ +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 0q8hqh8qafa0lsutd6lah6gqo8hp4u3t1pdshtg1 + for a@recap.email; + Thu, 01 Feb 2024 17:54:01 +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; +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; + dmarc=none header.from=paeb.uscourts.gov; +X-SES-RECEIPT: AEFBQUFBQUFBQUFHRTV1OTRPc3hqb3dYN1VwMk96RTUzZzhYT0p6THIzTUowQkJBSndPbS9RSExlbUVzeGE3b25VcGtMcHcySUhhM1V5TDZBMk1MUG9QRWFRZm5IKzl4NU42TDJFaG1hbmRwQzdiRUZCTGJ3L0RoYVRGaUpvK04zVy82S0NKWGxheGt3Y1B1Z25NVEMveDJnc2laTEJOTkwxZkRscGExSFY1VGhMRC9EcW56V3MrRjh6RTJJbHl1U0JhMFFUaUhCR0pvU3R5UDY0U0R4NlpFWW1PZ2dlUlJOczNMSzhUQk1tV3BtVVRXcE9HekV1Z1M2NDRNSnUwblVzUmVYekF6UmlUbC85eElCbmU1NjlxZUJOSXVUOVRuSE1IQ3JBckVPRHB3UnMzczFnSUdaY3VabGtvcUtZclk3RmpqUzdZVjNoM0E9 +X-SES-DKIM-SIGNATURE: a=rsa-sha256; q=dns/txt; b=FZdmHIzcA6pvqu94t2zN6xnibTg703FRK+MJzEXnSYhdu0A+NqVR4r1dzetXJ4F4Hp7GlAej85z8q9svIl6K5atbDUgTW759xst6tM7FhrhsZ0/MtVaHDcvJ6aux/SBAWfEFCrmFBJVn9KMIh2dA9dDyaFEXj03HRYxPNCPAiRs=; c=relaxed/simple; s=hsbnp7p3ensaochzwyq5wwmceodymuwv; d=amazonses.com; t=1706810042; v=1; bh=Xiid0L8AEB+4XykNpGwEZLHqrXOM8eX7CmPzbW9LLnw=; 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.80 +Received: from paebdb.paeb.gtwy.dcn ([156.119.190.80]) + by icmecf101.gtwy.uscourts.gov with ESMTP; 01 Feb 2024 12:54:00 -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 411HrxJC108764; + Thu, 1 Feb 2024 12:53:59 -0500 +Received: (from ecf_web@localhost) + by paebdb.paeb.gtwy.dcn (8.14.7/8.14.4/Submit) id 411HrYCZ108430; + Thu, 1 Feb 2024 12:53:34 -0500 +Date: Thu, 1 Feb 2024 12:53:34 -0500 +X-Authentication-Warning: paebdb.paeb.gtwy.dcn: ecf_web set sender to BKECF_LiveDB@paeb.uscourts.gov using -f +MIME-Version:1.0 +From:BKECF_LiveDB@paeb.uscourts.gov +To:Courtmail@paeb.uscourts.gov +Message-Id:<31789409@paeb.uscourts.gov> +Subject:Ch-13 23-13878-pmm Chapter 13 Plan - Kervince Markenzy +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 FirstName LastName entered on 2/1/2024 at 12:53 PM EST and filed on 2/1/2024 + +
+ + + +
Case Name: -Br Cun
Brittany Cunningham
Case Number:23-13129-amc
Document Number:
+ + + + + +
Case Name: +Kervince Markenzy Michel
Case Number:23-13878-pmm
Document Number: +17 +
+ + + + +

Docket Text: + +
+Chapter 13 Plan Filed by Kervince Markenzy Michel. (FirstName, LastName) +

+ +

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

+ +Document description:Main Document +
Original filename:Chapter13Plan.pdf +
Electronic document + Stamp: +
[STAMP bkecfStamp_ID=1008166204 [Date=2/1/2024] [FileNumber=31789407-0 +
] [56307f306a8f29e2c5ca1688da1849f794c4d2eb3c90663e7ad4d9081180812821a +
4d8d55f62abf5a8e340c7b9a8053221ba28ed90b2bd1eea00b3334000a115]] +
+ +
+ + + + + +
+23-13878-pmm Notice will be electronically mailed to: + + +
+ +
FirstName LastName on behalf of Debtor Kervince Markenzy Michel +
mail@a.com, a@domain.net;a@recap.email;ecf@a.enterprises;ecf@a.co;ecf@b.gg +
diff --git a/tests/examples/pacer/nef/s3/paeb_multi_1.json b/tests/examples/pacer/nef/s3/paeb_multi_1.json new file mode 100644 index 000000000..a262fcf87 --- /dev/null +++ b/tests/examples/pacer/nef/s3/paeb_multi_1.json @@ -0,0 +1,54 @@ +{ + "appellate": false, + "contains_attachments": false, + "court_id": "paeb", + "dockets": [ + { + "case_name": "Tri-State Paper, Inc. v. Foodarama Caterers Inc.", + "date_filed": null, + "docket_entries": [ + { + "date_filed": "2024-02-01", + "description": "Adversary Case 2:23-ap-75 Terminated for Statistical Purposes. (R., LastName)", + "document_number": null, + "document_url": null, + "pacer_case_id": "510318", + "pacer_doc_id": null, + "pacer_magic_num": null, + "pacer_seq_no": null, + "short_description": "Close Adversary Case" + } + ], + "docket_number": "23-00075", + "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": "Tri-State Paper, Inc.", + "date_filed": null, + "docket_entries": [ + { + "date_filed": "2024-02-01", + "description": "Adversary Case 2:23-ap-75 Terminated for Statistical Purposes. (R., LastName)", + "document_number": null, + "document_url": null, + "pacer_case_id": "510187", + "pacer_doc_id": null, + "pacer_magic_num": null, + "pacer_seq_no": null, + "short_description": "Close Adversary Case" + } + ], + "docket_number": "23-13237", + "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_1.txt b/tests/examples/pacer/nef/s3/paeb_multi_1.txt new file mode 100644 index 000000000..9febc94ad --- /dev/null +++ b/tests/examples/pacer/nef/s3/paeb_multi_1.txt @@ -0,0 +1,93 @@ +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 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=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=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; +X-SBRS: None +X-REMOTE-IP: 156.119.190.80 +Received: from paebdb.paeb.gtwy.dcn ([156.119.190.80]) + by icmecf101.gtwy.uscourts.gov with ESMTP; 01 Feb 2024 15:00:45 -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 411K0iKA075435; + Thu, 1 Feb 2024 15:00:45 -0500 +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 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 23-13237-pmm Close Adversary Case - Tri-State Paper, I +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 2/1/2024 at 3:00 PM EST and filed on 2/1/2024 + +
+ + + + + + + + + +
Case Name: +Tri-State Paper, Inc. v. Foodarama Caterers Inc.
Case Number:23-00075-pmm
WARNING: CASE CLOSED on 02/01/2024
Document Number: + +
+ + + + + + + + + +
Case Name: +Tri-State Paper, Inc.
Case Number:23-13237-pmm
Document Number: + +
+ + + + +

Docket Text: + +
+Adversary Case 2:23-ap-75 Terminated for Statistical Purposes. (R., LastName) +

+ +

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

+ + +
+
+ + + + +
+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: +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/pamb_4.json b/tests/examples/pacer/nef/s3/pamb_4.json new file mode 100644 index 000000000..2bf94e4b8 --- /dev/null +++ b/tests/examples/pacer/nef/s3/pamb_4.json @@ -0,0 +1,40 @@ +{ + "appellate": false, + "contains_attachments": false, + "court_id": "pamb", + "dockets": [ + { + "case_name": "Charlene R. House", + "date_filed": null, + "docket_entries": [ + { + "date_filed": "2024-04-19", + "description": "BNC Certificate of Notice (341 Meeting Notice (Chapter 13)) (RE: related document(s)[7]). Notice Date 04/19/2024. (Admin.)", + "document_number": "8", + "document_url": "https://ecf.pamb.uscourts.gov/doc1/154018316665?pdf_header=&magic_num=88545762&de_seq_num=31&caseid=279888", + "pacer_case_id": "279888", + "pacer_doc_id": "154018316665", + "pacer_magic_num": "88545762", + "pacer_seq_no": "31", + "short_description": "BNC Certificate of Notice (341 Meeting Notice (Chapter 13))" + } + ], + "docket_number": "1:24-bk-00941", + "federal_defendant_number": null, + "federal_dn_case_type": "bk", + "federal_dn_judge_initials_assigned": "HWV", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": "1" + } + ], + "email_recipients": [ + { + "email_addresses": [ + "a@domain.com", + "ustpregion03.ha.ecf@usdoj.gov", + "TWecf@pamd13trustee.com" + ], + "name": "" + } + ] +} \ No newline at end of file diff --git a/tests/examples/pacer/nef/s3/pamb_4.txt b/tests/examples/pacer/nef/s3/pamb_4.txt new file mode 100644 index 000000000..810a35619 --- /dev/null +++ b/tests/examples/pacer/nef/s3/pamb_4.txt @@ -0,0 +1,98 @@ +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 url2atpvm3bg2pbnoknoqe2blh6vv2ftdhbcbuo1 + for a@recap.email; + Sat, 20 Apr 2024 04:24:21 +0000 (UTC) +X-SES-Spam-Verdict: PASS +X-SES-Virus-Verdict: PASS +Received-SPF: pass (spfCheck: domain of pamb.uscourts.gov designates 199.107.16.202 as permitted sender) client-ip=199.107.16.202; envelope-from=PAMB_LiveDB@pamb.uscourts.gov; helo=icmecf102.gtwy.uscourts.gov; +Authentication-Results: amazonses.com; + spf=pass (spfCheck: domain of pamb.uscourts.gov designates 199.107.16.202 as permitted sender) client-ip=199.107.16.202; envelope-from=PAMB_LiveDB@pamb.uscourts.gov; helo=icmecf102.gtwy.uscourts.gov; + dmarc=none header.from=pamb.uscourts.gov; +X-SES-RECEIPT: AEFBQUFBQUFBQUFFVUdMV2dTQ1orUUNBM0JDc0lvMHVLSlNLbFVLVGIyYUVOQ1U2OWhZZlFrTG01WGVjYjRaVzkraWdXRDZPSjZqeEtvVEE2Smt4b0k4Y3JoYzVCcHY1VjJiOHhoV0hNZUJNdnBCc0U5K0ZmRjY4aUhhL2hzbENWMnRGQU4zbGxYOUE3YURGRUZ5MDZNd21FR05PcXNBdTV3azdPbllOdU9TYTBBeXJHcURvanAySXRGbWNUUGVkMStYemtsMGFJMGgyQW84dFVFRUlnaFBQN2xGbUQyVmV1SGhoaGphY3ArZElwS3piSlpIb2c5K21CZ1FXdktvTDRQYy9xTVlCVVU4STlYL2ZUZHhjVFNNRGRQZGRJcE40TUxiSWdXN29hemNVZWVBdEtSOU9FK2c9PQ== +X-SES-DKIM-SIGNATURE: a=rsa-sha256; q=dns/txt; b=FRx3GhfGs4MO7o37ZrN/tl1JKf/btUdLE7XPIWz9gTrbyqeiLY+/g9Eg1SHFApWGNP5O+3kdBtmpXqJo9AUSNbp26KPwEBiJeX6PcAHUEJgNku69ezElA9yfYXYI9AtOBpWjKMq3VIAnKJdJJDhhvrWxw7r6zN4YTvajrWbOR7o=; c=relaxed/simple; s=7v7vs6w47njt4pimodk5mmttbegzsi6n; d=amazonses.com; t=1713587062; v=1; bh=5In37aQpH+5VcUUpTFsA+McFTx1pRoJ2MVdM45reSPE=; 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.181 +Received: from pambdb.pamb.gtwy.dcn ([156.119.190.181]) + by icmecf102.gtwy.uscourts.gov with ESMTP; 20 Apr 2024 00:24:20 -0400 +Received: from pambdb.pamb.gtwy.dcn (localhost.localdomain [127.0.0.1]) + by pambdb.pamb.gtwy.dcn (8.14.7/8.14.7) with ESMTP id 43K4NVwu130051; + Sat, 20 Apr 2024 00:23:42 -0400 +Received: (from ecf_web@localhost) + by pambdb.pamb.gtwy.dcn (8.14.7/8.14.4/Submit) id 43K4NC2D129156; + Sat, 20 Apr 2024 00:23:12 -0400 +Date: Sat, 20 Apr 2024 00:23:12 -0400 +MIME-Version:1.0 +From:PAMB_LiveDB@pamb.uscourts.gov +To:Courtmail@pamb.uscourts.gov +Reply-To: pambecf_helpdesk@pamb.uscourts.gov +Message-Id:<17988852@pamb.uscourts.gov> +Subject:Ch-13 1:24-bk-00941-HWV -Charlene R. House BNC Certificate of Notice (341 Meeting Notice (Chapter 13)) +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

+ +

Middle District of Pennsylvania

+Notice of Electronic Filing +
+
+
The following transaction was received from Admin entered on 04/20/2024 at 00:22 AM EDT and filed on 04/19/2024 + +
+ + + + + + + + + +
Case Name: +Charlene R. House
Case Number:1:24-bk-00941-HWV
Document Number: +8 +
+ + + + +

Docket Text: + +
+BNC Certificate of Notice (341 Meeting Notice (Chapter 13)) (RE: related document(s)[7]). Notice Date 04/19/2024. (Admin.) +

+ +

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

+ +Document description:Imaged Certificate of Notice +
Original filename:P12400941309I0028.pdf +
Electronic document Stamp: +
[STAMP bkecfStamp_ID=1009835235 [Date=4/20/2024] [FileNumber=17988766-0] [9bbd2eee2f517505fc0a80fc5273546975a7ff924b3452050bcb4e67f23e6378fdd4d82227bdf9874aaae05c029bff311fb9d298fa691ba13fa2b908a5e6d2f9]] +
+ +
+
+ + + + +
+1:24-bk-00941-HWV Notice will be electronically mailed to: + + +
+ +
FirstName LastName on behalf of Debtor 1 Charlene R. House +
a@domain.com +
+
United States Trustee +
ustpregion03.ha.ecf@usdoj.gov +
+
Jack N Zaharopoulos +
TWecf@pamd13trustee.com +
diff --git a/tests/examples/pacer/nef/s3/pawb_5.json b/tests/examples/pacer/nef/s3/pawb_5.json new file mode 100644 index 000000000..e51720afe --- /dev/null +++ b/tests/examples/pacer/nef/s3/pawb_5.json @@ -0,0 +1,41 @@ +{ + "appellate": false, + "contains_attachments": false, + "court_id": "pawb", + "dockets": [ + { + "case_name": "U LOCK INC", + "date_filed": null, + "docket_entries": [ + { + "date_filed": "2023-01-30", + "description": "Order Regarding Order to Show Cause and Request for Administrative Expense Signed on 1/30/2023. (RE: related document(s): [293] Memorandum Opinion, [294] Order Scheduling Hearing, [304] Response). The Order to Show Cause is continued generally. The Oral Motion to Extend Time to File a Motion Seeking Reconsideration of the Memorandum Opinion is GRANTED and shall be filed on or before 3/1/2023. On or before 3/1/2023, Ms. Biros shall file a Renewed or Amended Application for Expense Claim shall be filed on or before 3/1/2023. (nsha)", + "document_number": "314", + "document_url": "https://ecf.pawb.uscourts.gov/doc1/156029036038?pdf_header=&magic_num=58599263&de_seq_num=1194&caseid=376948", + "pacer_case_id": "376948", + "pacer_doc_id": "156029036038", + "pacer_magic_num": "58599263", + "pacer_seq_no": "1194", + "short_description": "Order -Non-motion related" + } + ], + "docket_number": "22-20823", + "federal_defendant_number": null, + "federal_dn_case_type": null, + "federal_dn_judge_initials_assigned": "GLT", + "federal_dn_judge_initials_referred": null, + "federal_dn_office_code": null + } + ], + "email_recipients": [ + { + "email_addresses": [ + "a@a.com", + "a@b.com;c@ecf.courtdrive.com;cwirick@ecf.courtdrive.com", + "bankruptcy@bononilaw.com", + "pa69@ecfcbis.com" + ], + "name": "" + } + ] +} \ No newline at end of file diff --git a/tests/examples/pacer/nef/s3/pawb_5.txt b/tests/examples/pacer/nef/s3/pawb_5.txt new file mode 100644 index 000000000..264e5da1f --- /dev/null +++ b/tests/examples/pacer/nef/s3/pawb_5.txt @@ -0,0 +1,113 @@ +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 csg9j484cnbaesch6kd4gbfld6435efkerinci01 + for user@recap.email; + Mon, 30 Jan 2023 21:12:53 +0000 (UTC) +X-SES-Spam-Verdict: PASS +X-SES-Virus-Verdict: PASS +Received-SPF: pass (spfCheck: domain of pawb.uscourts.gov designates 63.241.40.205 as permitted sender) client-ip=63.241.40.205; envelope-from=Courtmail@pawb.uscourts.gov; helo=icmecf202.gtwy.uscourts.gov; +Authentication-Results: amazonses.com; + spf=pass (spfCheck: domain of pawb.uscourts.gov designates 63.241.40.205 as permitted sender) client-ip=63.241.40.205; envelope-from=Courtmail@pawb.uscourts.gov; helo=icmecf202.gtwy.uscourts.gov; + dmarc=none header.from=pawb.uscourts.gov; +X-SES-RECEIPT: AEFBQUFBQUFBQUFITWM0dkpIVGgvQVdnYVV0LzRVZGdXR1d2OFBjSGFBRFBzZFRRMzRRMGZ2SWpmc2Rqb0dCazMvQjNrOENwNXJpaVNreHhSZ0tBc1BMUGo5YUZiWHZQNUZoU1AyTTg0NGJDUkgzcE5hK094RWtIMEhoZzMxUVRhSGtpOXcyMjU3QkQwbXFDTEpIQndVM2s0UHRiazBHbDA2ZkxLOW9RcEhRaVBSNHplWWFHVEt5RXJ1Tit6eTh4cTlvZ253NFllRXg5enl4bGJLK0FjUWsxY3VXS09UQjhUdnYvVEZmN1hldWtDNzFZQzZ5d0xFT0lqVzVrQ21GWGhBTFRhek56VElvMmxreWVRODVZLy9MTGc4YUg1S0VZdTh3M1I3SFFydHE2U2tTQzdIbkJYdEE9PQ== +X-SES-DKIM-SIGNATURE: a=rsa-sha256; q=dns/txt; b=YZCh+1+bfnuVneE+0XQuFTTklJF4nBYDyFO8iYjxZYcROVNxcoP6cHPbS+FQpak0myd9YJD4Ae3DToMwbGzMhk3eLCRuIh5caIkZyB5D7B/YMvaG1Wh+7ETl7FotZ5y+e+hKCeeRyTTWhV0aJotJqoSX9VtyjILnx3cLJ+9PAkM=; c=relaxed/simple; s=gdwg2y3kokkkj5a55z2ilkup5wp5hhxx; d=amazonses.com; t=1675113174; v=1; bh=4AiwgU9HtH2V7U1d1RT97a5ieBzogAszF8TpWGYaxtQ=; 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.26 +Received: from pawbdb.pawb.gtwy.dcn ([156.119.190.26]) + by icmecf202.gtwy.uscourts.gov with ESMTP; 30 Jan 2023 16:12:53 -0500 +Received: from pawbdb.pawb.gtwy.dcn (localhost.localdomain [127.0.0.1]) + by pawbdb.pawb.gtwy.dcn (8.14.4/8.14.4) with ESMTP id 30ULCgUp117078; + Mon, 30 Jan 2023 16:12:43 -0500 +Received: (from ecf_web@localhost) + by pawbdb.pawb.gtwy.dcn (8.14.4/8.14.4/Submit) id 30ULCccZ116994; + Mon, 30 Jan 2023 16:12:38 -0500 +Date: Mon, 30 Jan 2023 16:12:38 -0500 +X-Authentication-Warning: pawbdb.pawb.gtwy.dcn: ecf_web set sender to Courtmail@pawb.uscourts.gov using -f +MIME-Version:1.0 +From:Courtmail@pawb.uscourts.gov +To:Courtmail@pawb.uscourts.gov +Message-Id:<26973066@pawb.uscourts.gov> +Subject:Ch-7 22-20823-GLT U LOCK INC Order -Non-motion related- +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

+ +

WESTERN DISTRICT OF PENNSYLVANIA

+Notice of Electronic Filing +
+
+
The following transaction was received from nsha entered on 1/30/2023 at 4:12 PM EST and filed on 1/30/2023 + +
+ + + + + + + + + +
Case Name: +U LOCK INC
Case Number:22-20823-GLT
Document Number: +314 +
+ + + + +

Docket Text: + +
+Order Regarding Order to Show Cause and Request for Administrative Expense Signed on 1/30/2023. (RE: related document(s): [293] Memorandum Opinion, [294] Order Scheduling Hearing, [304] Response). The Order to Show Cause is continued generally. The Oral Motion to Extend Time to File a Motion Seeking Reconsideration of the Memorandum Opinion is GRANTED and shall be filed on or before 3/1/2023. On or before 3/1/2023, Ms. Biros shall file a Renewed or Amended Application for Expense Claim shall be filed on or before 3/1/2023. (nsha) +

+ +

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

+ +Document description:Main Document +
Original filename:22-20823 Order Continuing OSC 294.pdf +
Electronic document + Stamp: +
[STAMP bkecfStamp_ID=1000342144 [Date=1/30/2023] [FileNumber=26973064- +
0] [9336a8de8119a3562c02de71e6c63f1cad5e2fdf0a0dd6f41818116387179472da +
148c29ab31bcf523ee965124996de42ff98797ce4cd0fac148951b76f68f6e]] +
+ +
+
+ + + + +
+22-20823-GLT Notice will be electronically mailed to: + + +
+ +
Robert S. Bernstein on behalf of Creditor Christine Biros +
a@a.com, a@b.com;c@ecf.courtdrive.com;cwirick@ecf.courtdrive.com +
+
Eric E. Bononi +
bankruptcy@bononilaw.com, pa69@ecfcbis.com + +
+ +22-20823-GLT Notice will not be electronically mailed to: + + +
+ + +
+ + + + +
+
\ No newline at end of file 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..167f4606f --- /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": "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": "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",