diff --git a/CHANGES.md b/CHANGES.md index a1a3f4c17..7cfa0f05f 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -41,8 +41,10 @@ Features: Changes: - Abstract validation functions out of `AbstractSite.download_content` into reusable utils #1882 +- Abstract urllib `download_content` into `AbstractSite` for scrapers with `use_urllib = True` #1714 Fixes: +- Fix `masssuperct` by switching from JSON API to HTML scraping with urllib to bypass Cloudflare TLS fingerprinting #1714 - Fix `lactapp_3` opinion download by using urllib instead of httpx to bypass Cloudflare TLS fingerprinting #1882 - Fix `mich` scraper failing when API returns null courts #1885 diff --git a/juriscraper/AbstractSite.py b/juriscraper/AbstractSite.py index ee1cab176..a2a69774e 100644 --- a/juriscraper/AbstractSite.py +++ b/juriscraper/AbstractSite.py @@ -391,6 +391,22 @@ async def _download(self, request_dict=None): self._post_process_response() return self._return_response_text_object() + def _download_content_urllib(self, download_url: str, headers: dict): + """Download content using urllib to bypass Cloudflare + + Uses urllib instead of httpx because Cloudflare blocks httpx + via TLS fingerprinting. Used by scrapers with `use_urllib = True`. + + :param download_url: The URL for the item you wish to download. + :param headers: headers dict + :return: A response object with a `content` field + """ + req = urllib.request.Request(download_url, headers=headers) + response = self.urllib_opener.open(req, timeout=90) + response.content = response.read() + + return response + async def download_content( self, download_url: str, @@ -437,26 +453,28 @@ def handler(request: httpx.Request): r = await s.get(url=self.url) return self.cleanup_content(r.content) - s = self.request["session"] - if self.needs_special_headers: headers = self.request["headers"] else: headers = {"User-Agent": "CourtListener"} - # Note that we do a GET even if self.method is POST. This is - # deliberate. - r = await s.get( - download_url, - headers=headers, - cookies=self.cookies, - timeout=300, - ) + if self.use_urllib: + r = self._download_content_urllib(download_url, headers) + else: + s = self.request["session"] + # Note that we do a GET even if self.method is POST. This is + # deliberate. + r = await s.get( + download_url, + headers=headers, + cookies=self.cookies, + timeout=300, + ) check_empty_downloaded_file(r, download_url) check_expected_content_types(self, r, download_url) - if doctor_is_available: + if doctor_is_available and not self.use_urllib: # test for and follow meta redirects, uses doctor get_extension # service r = await follow_redirections(r, s) @@ -489,8 +507,10 @@ def _download_urllib(self): data = None if self.method == "POST": data = urllib.parse.urlencode(self.parameters).encode("utf-8") + raw = self._urllib_fetch(self.url, data=data) text = raw.decode("utf-8") + content_type = "" if hasattr(self.request["response"], "getheader"): content_type = self.request["response"].getheader( @@ -498,6 +518,7 @@ def _download_urllib(self): ) if "json" in content_type: return json.loads(text) + text = self._clean_text(text) html_tree = self._make_html_tree(text) return html_tree diff --git a/juriscraper/opinions/united_states/state/lactapp_3.py b/juriscraper/opinions/united_states/state/lactapp_3.py index c80215047..9c524e82c 100644 --- a/juriscraper/opinions/united_states/state/lactapp_3.py +++ b/juriscraper/opinions/united_states/state/lactapp_3.py @@ -14,7 +14,6 @@ import re import urllib.parse -import urllib.request from datetime import date, datetime from urllib.parse import urljoin @@ -23,11 +22,6 @@ from juriscraper.lib.date_utils import unique_year_month from juriscraper.lib.log_tools import make_default_logger from juriscraper.lib.string_utils import titlecase -from juriscraper.lib.utils import ( - check_download_url, - check_empty_downloaded_file, - check_expected_content_types, -) from juriscraper.OpinionSiteLinear import OpinionSiteLinear logger = make_default_logger() @@ -199,37 +193,3 @@ def make_backscrape_iterable(self, kwargs): self.back_scrape_iterable = unique_year_month( self.back_scrape_iterable ) - - async def download_content( - self, - download_url: str, - doctor_is_available: bool = False, - media_root: str = "", - ) -> bytes: - """Download opinion content using urllib to bypass Cloudflare - - Uses urllib instead of httpx because Cloudflare blocks httpx - via TLS fingerprinting. - - Note that we don't need `media_root` or `doctor_is_available` - since this won't be used in CL testing and we won't follow - redirection due to the content being PDF - """ - - # the test_mode_is_enabled() conditional is not implemented - # because it is only used for integration tests with CL - # and won't touch this child scraper. Copying the code would - # just introduce boilerplate - - check_download_url(download_url) - - headers = {"User-Agent": "CourtListener"} - req = urllib.request.Request(download_url, headers=headers) - response = self.urllib_opener.open(req, timeout=90) - pdf_content = response.read() - - check_empty_downloaded_file(pdf_content, download_url) - check_expected_content_types(self, response, download_url) - - # cleanup_content is not implemented, just for compatibility - return self.cleanup_content(pdf_content) diff --git a/juriscraper/opinions/united_states/state/masssuperct.py b/juriscraper/opinions/united_states/state/masssuperct.py index dd58df6ca..395b2d464 100644 --- a/juriscraper/opinions/united_states/state/masssuperct.py +++ b/juriscraper/opinions/united_states/state/masssuperct.py @@ -7,71 +7,98 @@ Date: 2025-07-16 History: - Created by luism + - 2026-03-25: Switched from JSON API to HTML page scraping +Notes: + Cloudflare blocks GET requests via TLS fingerprinting. + We use POST with an empty body to bypass this. """ -import re from datetime import date, datetime -from urllib.parse import urljoin +from urllib.parse import quote, urljoin from lxml import etree, html from juriscraper.lib.date_utils import unique_year_month +from juriscraper.lib.exceptions import InvalidDocumentError from juriscraper.lib.html_utils import strip_bad_html_tags_insecure +from juriscraper.lib.log_tools import make_default_logger from juriscraper.lib.string_utils import titlecase from juriscraper.OpinionSiteLinear import OpinionSiteLinear +logger = make_default_logger() + class Site(OpinionSiteLinear): court_name = "Superior Court" first_opinion_date = datetime(2017, 6, 20) + use_urllib = True + base_url = "https://www.socialaw.com/services/slip-opinions/" def __init__(self, *args, **kwargs): super().__init__(*args, **kwargs) - self.url = "https://www.socialaw.com/customapi/slips/getopinions" self.court_id = self.__module__ self.search_date = datetime.today() - self.parameters = { - "SectionName": self.court_name, - "ArchiveDate": self.search_date.strftime("%B %Y"), - } + self.url = self._build_url() self.method = "POST" + self.parameters = {} self.status = "Published" self.expected_content_types = ["text/html"] self.days_interval = 30 self.make_backscrape_iterable(kwargs) + def _build_url(self) -> str: + """Build the listing URL with court and month query parameters. + + :return: Full URL with encoded query parameters + """ + month_str = quote(self.search_date.strftime("%B %Y")) + court_str = quote(self.court_name) + return f"{self.base_url}?Court={court_str}&Month={month_str}" + def _process_html(self): - """Scrape and process the JSON endpoint + """Parse opinion listing from HTML accordion items. :return: None """ - for row in self.html: - url = urljoin( - "https://www.socialaw.com/services/slip-opinions/", - row["UrlName"], + for item in self.html.xpath( + "//div[contains(@class, 'slip-opinions-list')]" + "//div[@class='accordion-item']" + ): + name = item.xpath(".//strong[contains(@class, 'title')]//text()") + name = name[0].strip() if name else "" + + date_str = item.xpath( + ".//div[contains(@class, 'dates-section')]" + "//div[@class='rich-text rich-text-sm']//text()" ) - details = row["Details"] - caption = titlecase(row.get("Parties")) - caption = re.sub(r"(\[\d{1,2}\])", "", caption) - - judge_str = details.get("Present", "") - judge_str = re.sub(r"(\[\d{1,2}\])", "", judge_str) - judge_str = re.sub(r"\, JJ\.", "", judge_str) - judge_str = re.sub( - r"(Associate\s+)?Justice*|of the Superior Court", "", judge_str + date_str = date_str[0].strip() if date_str else "" + + docket = item.xpath( + ".//div[contains(@class, 'docket-section')]" + "//div[@class='section-header']" + "//div[@class='rich-text rich-text-sm']//text()" + ) + docket = docket[0].strip() if docket else "" + + url = item.xpath( + ".//div[contains(@class, 'docket-section')]" + "//a[contains(@class, 'btn')]/@href" ) + url = urljoin("https://www.socialaw.com", url[0]) if url else "" - # Clear judge_str if it matches a date like 'July 16, 2024' - if re.match(r"^[A-Za-z]+\s+\d{1,2},\s+\d{4}$", judge_str.strip()): - judge_str = "" + if not name or not url: + logger.warning( + "masssuperct: missing name or URL for docket '%s', skipping", + docket, + ) + continue self.cases.append( { - "name": caption, - "judge": judge_str, - "date": row["Date"], + "name": titlecase(name), + "date": date_str, "url": url, - "docket": details["Docket"], + "docket": docket, } ) @@ -79,7 +106,8 @@ def _process_html(self): def cleanup_content(content): """Remove non-opinion HTML - Cleanup HMTL from Social Law page so we can properly display the content + Cleanup HTML from Social Law page so we can properly display + the content. :param content: The scraped HTML :return: Cleaner HTML @@ -87,25 +115,32 @@ def cleanup_content(content): content = content.decode("utf-8") tree = strip_bad_html_tags_insecure(content, remove_scripts=True) content = tree.xpath( - "//div[@id='contentPlaceholder_ctl00_ctl00_ctl00_detailContainer']" - )[0] + "//div[contains(@class, 'primary-content-rich-text')]" + ) + + if not content: + content = tree.xpath( + "//div[contains(@class, 'primary-content-body')]" + ) + if not content: + raise InvalidDocumentError( + "masssuperct: no opinion content found in page" + ) + new_tree = etree.Element("html") body = etree.SubElement(new_tree, "body") - body.append(content) - return html.tostring(new_tree).decode("utf-8") + body.append(content[0]) + return html.tostring(new_tree) async def _download_backwards(self, search_date: date) -> None: """Download and process HTML for a given target date. - :param search_date (date): The date for which to download and process opinions. - :return None; sets the target date, downloads the corresponding HTML - and processes the HTML to extract case details. + :param search_date: The date for which to download and process + opinions. + :return: None """ self.search_date = search_date - self.parameters = { - "SectionName": self.court_name, - "ArchiveDate": self.search_date.strftime("%B %Y"), - } + self.url = self._build_url() self.html = await self._download() self._process_html() diff --git a/tests/examples/opinions/united_states/masssuperct_example.compare.json b/tests/examples/opinions/united_states/masssuperct_example.compare.json index f9f65d92f..83b7fe1bf 100644 --- a/tests/examples/opinions/united_states/masssuperct_example.compare.json +++ b/tests/examples/opinions/united_states/masssuperct_example.compare.json @@ -1,398 +1,122 @@ [ { - "case_dates": "2025-06-30", - "case_names": "Commonwealth v. Jose Rosado-Nazario", - "download_urls": "https://www.socialaw.com/services/slip-opinions/slip-opinion-details/commonwealth-v.-jose-rosado-nazario", + "case_dates": "2026-03-16", + "case_names": "Commonwealth v. Robert Kawada", + "download_urls": "https://www.socialaw.com/services/slip-opinions/march-2026/commonwealth-v-robert-kawada/", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "2081CR00319", - "judges": "Kenneth W. Salinger", + "docket_numbers": "2481CR00395", "case_name_shorts": "" }, { - "case_dates": "2025-06-23", - "case_names": "William I. Koch; Renegade Management, Inc.; And Nauticus Marina, Inc. v. Mark Curley and Bridge Street Marina, LLC", - "download_urls": "https://www.socialaw.com/services/slip-opinions/slip-opinion-details/william-i.-koch-renegade-management-inc.-and-nauticus-marina-inc.-v.-mark-curley-and-bridge-street-marina-llc", + "case_dates": "2026-03-11", + "case_names": "City of Boston v. Boston Firefighters' Association, Iaff Local 718", + "download_urls": "https://www.socialaw.com/services/slip-opinions/march-2026/city-of-boston-v-boston-firefighters-association-iaff-local-718/", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "2384CV02766-BLS2", - "judges": "Kenneth W. Salinger", + "docket_numbers": "2584CV01444-C", "case_name_shorts": "" }, { - "case_dates": "2025-06-23", - "case_names": "Tommy Royal and Bernadette Costa, Individually and on Behalf of Similarly Situated Individuals v. Andrew Metcalf, Judgment Acquisitions Unlimited Inc., and Michael Zola", - "download_urls": "https://www.socialaw.com/services/slip-opinions/slip-opinion-details/tommy-royal-and-bernadette-costa-1-individually-and-on-behalf-of-similarly-situated-individuals-v.-andrew-metcalf-2-judgment-acquisitions-unlimited-inc.-and-michael-zola-3", + "case_dates": "2026-03-05", + "case_names": "Mariela Garcia Lopez v. Medtronic, Inc., Covidien, L.P., Covidien Holding, Inc., Covidien Sales LLC, Old Colony State Insurance Company and X Y Z Corporations 1-S", + "download_urls": "https://www.socialaw.com/services/slip-opinions/march-2026/mariela-garcia-lopez-v-medtronic-inc-covidien-lp-covidien-holding-inc-covidien-sales-llc-old-colony-state-insurance-company-and-x-y-z-corporations-1-s/", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "2384CV02302-BLS2", - "judges": "Kenneth W. Salinger", + "docket_numbers": "2584CV01006-C", "case_name_shorts": "" }, { - "case_dates": "2025-06-23", - "case_names": "Old Ironsides Energy LLC v. Marsh & McLennan Agency LLC; Marsh LLC; Marsh USA Inc.; John Kurkulonis, Jr.; And Edward D. Fitzgerald", - "download_urls": "https://www.socialaw.com/services/slip-opinions/slip-opinion-details/old-ironsides-energy-llc-v.-marsh-mclennan-agency-llc-marsh-llc-marsh-usa-inc.-john-kurkulonis-jr.-and-edward-d.-fitzgerald", + "case_dates": "2026-03-05", + "case_names": "Jane Doe v. Dla Piper LLP (Us) and Brian Biggs", + "download_urls": "https://www.socialaw.com/services/slip-opinions/march-2026/jane-doe-v-dla-piper-llp-us-and-brian-biggs/", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "1984CV00912-BLS2", - "judges": "Kenneth W. Salinger", + "docket_numbers": "2584CV03465-C", "case_name_shorts": "" }, { - "case_dates": "2025-06-23", - "case_names": "Massachusetts Premier Soccer LLC D/B/A Global Premier Soccer v. Burns & Levinson LLP and Perry A. Henderson, Jr.", - "download_urls": "https://www.socialaw.com/services/slip-opinions/slip-opinion-details/massachusetts-premier-soccer-llc-d-b-a-global-premier-soccer-v.-burns-levinson-llp-and-perry-a.-henderson-jr", + "case_dates": "2026-03-04", + "case_names": "Commonwealth v. Nicholas Akerberg", + "download_urls": "https://www.socialaw.com/services/slip-opinions/march-2026/commonwealth-v-nicholas-akerberg/", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "2084CV00398-BLS2", - "judges": "Kenneth W. Salinger", + "docket_numbers": "2581CR00277", "case_name_shorts": "" }, { - "case_dates": "2025-06-23", - "case_names": "Hector Maza, Monjid Hamdan, and Cortney Mittelsteadt v. Giner, Inc. and Andrew Belt", - "download_urls": "https://www.socialaw.com/services/slip-opinions/slip-opinion-details/hector-maza-monjid-hamdan-and-cortney-mittelsteadt-v.-giner-inc.-and-andrew-belt", + "case_dates": "2026-03-02", + "case_names": "Alexandra Flessas v. Massachusetts Bay Transportation Authority", + "download_urls": "https://www.socialaw.com/services/slip-opinions/march-2026/alexandra-flessas-v-massachusetts-bay-transportation-authority/", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "2184CV01915-BLS2", - "judges": "Kenneth W. Salinger", + "docket_numbers": "2384CV02091-C", "case_name_shorts": "" }, { - "case_dates": "2025-06-23", - "case_names": "Harold Parsons, on Behalf of Himself and Others Similarly Situated v. the Commerce Insurance Company", - "download_urls": "https://www.socialaw.com/services/slip-opinions/slip-opinion-details/harold-parsons-on-behalf-of-himself-and-others-similarly-situated-v.-the-commerce-insurance-company", + "case_dates": "2026-02-26", + "case_names": "Vanguard Construction Company, Inc. v. City of Lawrence, Massachusetts Commercial Masonry Corporation v. Vanguard Construction Company, Inc.; North American Specialty Insurance Company; And the City of Lawrence", + "download_urls": "https://www.socialaw.com/services/slip-opinions/march-2026/vanguard-construction-company-inc-v-city-of-lawrence-massachusetts-commercial-masonry-corporation-v-vanguard-construction-company-inc-north-american-specialty-insurance-company-and-the-city-of-lawrence/", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "2084CV00659-BLS2", - "judges": "Kenneth W. Salinger", + "docket_numbers": "2384CV00885-BLS2 / 2384CV01885-BLS2", "case_name_shorts": "" }, { - "case_dates": "2025-06-11", - "case_names": "Shannon O' Brien v. Deborah Goldberg", - "download_urls": "https://www.socialaw.com/services/slip-opinions/slip-opinion-details/shannon-o'-brien-v.-deborah-goldberg-1", + "case_dates": "2026-02-26", + "case_names": "Theodore Lampros v. Innovive Health of Massachusetts LLC and Others", + "download_urls": "https://www.socialaw.com/services/slip-opinions/march-2026/theodore-lampros-v-innovive-health-of-massachusetts-llc-and-others/", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "2484CV03009-C", - "judges": "Robert B. Gordon", + "docket_numbers": "2384CV00862-BLS2", "case_name_shorts": "" }, { - "case_dates": "2025-06-11", - "case_names": "Cmfg Life Insurance Company; Cuna Brokerage Services, Inc.; And Cuna Mutual Insurance Agency, Inc. v. Earnest Consulting Group, LLC; Commonwealth Financial Corporation; Om Financial Group, LLC; Bruce Bauer; Brooks Berardi; Michael Bremer; John Ellis", - "download_urls": "https://www.socialaw.com/services/slip-opinions/slip-opinion-details/cmfg-life-insurance-company-cuna-brokerage-services-inc.-and-cuna-mutual-insurance-agency-inc.-v.-earnest-consulting-group-llc-commonwealth-financial-corporation-om-financial-group-llc-bruce-bauer-brooks-berardi-michael-bremer-john-ellis", + "case_dates": "2026-02-26", + "case_names": "Christopher Schoonover v. Burnell Controls, Inc.", + "download_urls": "https://www.socialaw.com/services/slip-opinions/march-2026/christopher-schoonover-v-burnell-controls-inc/", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "2384CV02196-BLS2", - "judges": "Kenneth W. Salinger", + "docket_numbers": "2684CV00084-BLS2", "case_name_shorts": "" }, { - "case_dates": "2025-06-11", - "case_names": "Boston Seaport M1&2 Land, LLC v. Commissioner of Revenue", - "download_urls": "https://www.socialaw.com/services/slip-opinions/slip-opinion-details/boston-seaport-m1-2-land-llc-v.-commissioner-of-revenue", + "case_dates": "2026-02-24", + "case_names": "Brian J. Lesser and Burn, LLC v. Kristen L. Scanlon and Scanlon Law, LLP", + "download_urls": "https://www.socialaw.com/services/slip-opinions/march-2026/brian-j-lesser-and-burn-llc-v-kristen-l-scanlon-and-scanlon-law-llp/", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "2584CV00039-BLS2", - "judges": "Kenneth W. Salinger", + "docket_numbers": "2584CV01657-C", "case_name_shorts": "" }, { - "case_dates": "2025-06-03", - "case_names": "Moshe Yanai, Rachel Yanai, and Michal International Investment LLC v. Zack Keinan, Individually and as General Partner of Scintilla Holdings, Ltd.; Scintilla Holdings, Ltd., as General Partner of Scintilla Fund, L.P.; And Boaz Toshav", - "download_urls": "https://www.socialaw.com/services/slip-opinions/slip-opinion-details/moshe-yanai-rachel-yanai-and-michal-international-investment-llc-v.-zack-keinan-individually-and-as-general-partner-of-scintilla-holdings-ltd.-scintilla-holdings-ltd.-as-general-partner-of-scintilla-fund-l.p.-and-boaz-toshav1", + "case_dates": "2026-02-18", + "case_names": "The Giving Back Fund, Inc. v. Joanne Pasternack", + "download_urls": "https://www.socialaw.com/services/slip-opinions/march-2026/the-giving-back-fund-inc-v-joanne-pasternack/", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "2584CV00565-BLS2", - "judges": "Kenneth W. Salinger", + "docket_numbers": "2584CV02204-BLS2", "case_name_shorts": "" }, { - "case_dates": "2025-06-03", - "case_names": "Hembio, Inc. F/K/A Hemera Biosciences, Inc. v. Paul Fireman, Adam Rogers, and Hemera Biosciences, LLC", - "download_urls": "https://www.socialaw.com/services/slip-opinions/slip-opinion-details/hembio-inc.-f-k-a-hemera-biosciences-inc.-v.-paul-fireman-adam-rogers-and-hemera-biosciences-llc", + "case_dates": "2026-02-18", + "case_names": "Syed Ali Bokhari and Polly Roberts Bokhari v. North Eastern Savings Bank", + "download_urls": "https://www.socialaw.com/services/slip-opinions/march-2026/syed-ali-bokhari-and-polly-roberts-bokhari-v-north-eastern-savings-bank/", "precedential_statuses": "Published", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "2184CV01346-BLS2", - "judges": "Kenneth W. Salinger", - "case_name_shorts": "" - }, - { - "case_dates": "2025-06-03", - "case_names": "Clear Blue Specialty Insurance Company v. R-Svp II, L.L.C.; Bp Sidecar Investment III, LLC; Bpi Credit 3, LLC; Bpi Credit 4, LLC; And Bpi Credit 5, LLC", - "download_urls": "https://www.socialaw.com/services/slip-opinions/slip-opinion-details/clear-blue-specialty-insurance-company-v.-r-svp-ii-l.l.c.-bp-sidecar-investment-iii-llc-bpi-credit-3-llc-bpi-credit-4-llc-and-bpi-credit-5-llc", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2484CV01898-BLS2", - "judges": "Kenneth W. Salinger", - "case_name_shorts": "" - }, - { - "case_dates": "2025-05-23", - "case_names": "KECHES LAW GROUP, P.C. v. STEVEN SEMENZA, at Al", - "download_urls": "https://www.socialaw.com/services/slip-opinions/slip-opinion-details/keches-law-group-p.c.-plaintiff-vs.-steven-semenza-at-al-defendants", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2482CV0790", - "judges": "The Honorable James Budreau", - "case_name_shorts": "" - }, - { - "case_dates": "2025-05-23", - "case_names": "Commonwealth v. Yulian Rosado", - "download_urls": "https://www.socialaw.com/services/slip-opinions/slip-opinion-details/commonwealth-vs.-yulian-rosado", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2384CR00091", - "judges": "William F. Bloomer", - "case_name_shorts": "" - }, - { - "case_dates": "2025-05-23", - "case_names": "Commonwealth v. Worlkens Metellus", - "download_urls": "https://www.socialaw.com/services/slip-opinions/slip-opinion-details/commonwealth-vs.-worlkens-metellus", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2184CR00261", - "judges": "William F. Bloomer", - "case_name_shorts": "" - }, - { - "case_dates": "2025-05-23", - "case_names": "Commonwealth v. Wilson Ruiz-Martinez", - "download_urls": "https://www.socialaw.com/services/slip-opinions/slip-opinion-details/commonwealth-vs.-wilson-ruiz-martinez", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2284CR00510", - "judges": "William F. Bloomer", - "case_name_shorts": "" - }, - { - "case_dates": "2025-05-23", - "case_names": "Commonwealth v. Steven Coachman", - "download_urls": "https://www.socialaw.com/services/slip-opinions/slip-opinion-details/commonwealth-v.-steven-coachman", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2384CR00024", - "judges": "William F. Bloomer", - "case_name_shorts": "" - }, - { - "case_dates": "2025-05-23", - "case_names": "Commonwealth v. Melvin Riley and Samantha Rogers", - "download_urls": "https://www.socialaw.com/services/slip-opinions/slip-opinion-details/commonwealth-v.-melvin-riley-and-samantha-rogers", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2477CR0076 / 2477CR0077", - "judges": "William F. Bloomer , Superior Court", - "case_name_shorts": "" - }, - { - "case_dates": "2025-05-23", - "case_names": "Commonwealth v. Kao Lanois", - "download_urls": "https://www.socialaw.com/services/slip-opinions/slip-opinion-details/commonwealth-vs.-kao-lanois", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2477CR00470", - "judges": "William F. Bloomer", - "case_name_shorts": "" - }, - { - "case_dates": "2025-05-23", - "case_names": "Commonwealth v. Kamal Oliver", - "download_urls": "https://www.socialaw.com/services/slip-opinions/slip-opinion-details/commonwealth-v.-kamal-oliver", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2284CR00555", - "judges": "William F. Bloomer", - "case_name_shorts": "" - }, - { - "case_dates": "2025-05-23", - "case_names": "Commonwealth v. Jose Pinero", - "download_urls": "https://www.socialaw.com/services/slip-opinions/slip-opinion-details/commonwealth-v.-jose-pinero", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2284CR00776", - "judges": "", - "case_name_shorts": "" - }, - { - "case_dates": "2025-05-23", - "case_names": "Commonwealth v. Jonathan Thebaud", - "download_urls": "https://www.socialaw.com/services/slip-opinions/slip-opinion-details/commonwealth-v.-jonathan-thebaud", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2284CR00385", - "judges": "William F. Bloomer", - "case_name_shorts": "" - }, - { - "case_dates": "2025-05-23", - "case_names": "Commonwealth v. Jeiffry Rosario", - "download_urls": "https://www.socialaw.com/services/slip-opinions/slip-opinion-details/commonwealth-v.-jeiffry-rosario", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2284CR00697", - "judges": "William F. Bloomer of the Superior", - "case_name_shorts": "" - }, - { - "case_dates": "2025-05-23", - "case_names": "Commonwealth of Massachusetts v. Justice M. Skelton", - "download_urls": "https://www.socialaw.com/services/slip-opinions/slip-opinion-details/commonwealth-of-massachusetts-v.-justice-m.-skelton", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2284CR438", - "judges": "William F. Bloomer", - "case_name_shorts": "" - }, - { - "case_dates": "2025-05-23", - "case_names": "Commonwealth of Massachusetts v. Jerrell Greene-Martin", - "download_urls": "https://www.socialaw.com/services/slip-opinions/slip-opinion-details/commonwealth-of-massachusetts-v.-jerrell-greene-martin", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2284CR00723", - "judges": "William F. Bloomer", - "case_name_shorts": "" - }, - { - "case_dates": "2025-05-12", - "case_names": "Steven B. Deutsch and Joyce I. Greenberg v. Privilege Underwriters Reciprocal Exchange", - "download_urls": "https://www.socialaw.com/services/slip-opinions/slip-opinion-details/steven-b.-deutsch-and-joyce-i.-greenberg-v.-privilege-underwriters-reciprocal-exchange", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2284CV00879-BLS2", - "judges": "Kenneth W. Salinger", - "case_name_shorts": "" - }, - { - "case_dates": "2025-05-12", - "case_names": "Moshe Yanai, Rachel Yanai, and Michal International Investment LLC v. Zack Keinan, Individually and as General Partner of Scintilla Holdings, Ltd.; Scintilla Holdings, Ltd., as General Partner of Scintilla Fund, L.P.", - "download_urls": "https://www.socialaw.com/services/slip-opinions/slip-opinion-details/moshe-yanai-rachel-yanai-and-michal-international-investment-llc-v.-zack-keinan-individually-and-as-general-partner-of-scintilla-holdings-ltd.-scintilla-holdings-ltd.-as-general-partner-of-scintilla-fund-l.p-", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2584CV00565-BLS2", - "judges": "Kenneth W. Salinger", - "case_name_shorts": "" - }, - { - "case_dates": "2025-05-12", - "case_names": "Michael F. Holick, ph.D., M.D. v. Boston Medical Center and Evans Medical Foundation, Inc.", - "download_urls": "https://www.socialaw.com/services/slip-opinions/slip-opinion-details/michael-f.-holick-ph.d.-m.d.-v.-boston-medical-center-and-evans-medical-foundation-inc", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2184CV01454-BLS2", - "judges": "Kenneth W. Salinger", - "case_name_shorts": "" - }, - { - "case_dates": "2025-05-12", - "case_names": "In Re Revo Mg, LLC", - "download_urls": "https://www.socialaw.com/services/slip-opinions/slip-opinion-details/in-re-revo-mg-llc", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2484CV00307-BLS2", - "judges": "Kenneth W. Salinger", - "case_name_shorts": "" - }, - { - "case_dates": "2025-05-12", - "case_names": "Enfield Builders, Inc. v. the Commonwealth of Massachusetts, Division of Capital Asset Management and Maintenance", - "download_urls": "https://www.socialaw.com/services/slip-opinions/slip-opinion-details/enfield-builders-inc.-v.-the-commonwealth-of-massachusetts-division-of-capital-asset-management-and-maintenance", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2184CV01075-BLS2", - "judges": "Kenneth W. Salinger", - "case_name_shorts": "" - }, - { - "case_dates": "2025-05-12", - "case_names": "Commonwealth of Massachusetts v. Mv Realty Pbc, LLC; Mv of Massachusetts, LLC; Mv Brokerage of Massachusetts, LLC; Mv Realty Holdings, LLC; Mv Realty Receivables 1, LLC; Mv Receivables II, LLC; Mv Receivables III", - "download_urls": "https://www.socialaw.com/services/slip-opinions/slip-opinion-details/commonwealth-of-massachusetts-v.-mv-realty-pbc-llc-mv-of-massachusetts-llc-mv-brokerage-of-massachusetts-llc-mv-realty-holdings-llc-mv-realty-receivables-1-llc-mv-receivables-ii-llc-mv-receivables-iii", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2284CV02823-BLS2", - "judges": "Kenneth W. Salinger", - "case_name_shorts": "" - }, - { - "case_dates": "2025-05-12", - "case_names": "694 Worcester St LLC and Others v. Ccp Counter Manor 0507 LLC and Others", - "download_urls": "https://www.socialaw.com/services/slip-opinions/slip-opinion-details/694-worcester-st-llc-and-others-1-v.-ccp-counter-manor-0507-llc-and-others-2", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2484CV03284-BLS2", - "judges": "Kenneth W. Salinger", - "case_name_shorts": "" - }, - { - "case_dates": "2025-04-08", - "case_names": "Moshe Yanai, Rachel Yanai, and Michal International Investment LLC v. Zack Keinan, Individually and as General Partner of Scintilla Holdings, Ltd.; Scintilla Holdings, Ltd., as General Partner of Scintilla Fund, L.P.; And Boaz Toshav", - "download_urls": "https://www.socialaw.com/services/slip-opinions/slip-opinion-details/moshe-yanai-rachel-yanai-and-michal-international-investment-llc-v.-zack-keinan-individually-and-as-general-partner-of-scintilla-holdings-ltd.-scintilla-holdings-ltd.-as-general-partner-of-scintilla-fund-l.p.-and-boaz-toshav", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2584CV00565-BLS2", - "judges": "Kenneth W. Salinger", - "case_name_shorts": "" - }, - { - "case_dates": "2025-04-08", - "case_names": "James Lyons v. Secretary of State William Galvin, Clerk of the House Timothy Carrol, Clerk of the Senate Michael Hurley, and Attorney General Andrea Campbell, in Their Official Capacities", - "download_urls": "https://www.socialaw.com/services/slip-opinions/slip-opinion-details/james-lyons-v.-secretary-of-state-william-galvin-clerk-of-the-house-timothy-carrol-1-clerk-of-the-senate-michael-hurley-and-attorney-general-andrea-campbell-in-their-official-capacities", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "2484CV03175-BLS2", - "judges": "Kenneth W. Salinger", - "case_name_shorts": "" - }, - { - "case_dates": "2025-04-08", - "case_names": "Impact Technology Licensing , LLC, and Boston Technology Consultants Group, Inc. (d/B/A Impact Technology Development) v. Barry-Wehmiller Companies, Inc.; Carr Biosystems, LLC; Pneumatic Scale corp.(d/B/A \"pneumatic Scale Angelus Corp.\"); \\", - "download_urls": "https://www.socialaw.com/services/slip-opinions/slip-opinion-details/impact-technology-licensing-llc-and-boston-technology-consultants-group-inc.-(d-b-a-impact-technology-development)-v.-barry-wehmiller-companies-inc.-carr-biosystems-llc-pneumatic-scale-corp.(d-b-a-pneumatic-scale-angelus-corp.-)", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "@2484CV03350-BLS2", - "judges": "Kenneth W. Salinger", + "docket_numbers": "2484CV01291-BLS2", "case_name_shorts": "" } ] \ No newline at end of file diff --git a/tests/examples/opinions/united_states/masssuperct_example.html b/tests/examples/opinions/united_states/masssuperct_example.html new file mode 100644 index 000000000..4fff1dead --- /dev/null +++ b/tests/examples/opinions/united_states/masssuperct_example.html @@ -0,0 +1,3237 @@ + + + + + + + + +Slip Opinions | MA Appeals Court and SJC | Social Law Library + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ +
+ + + + + +
+
+
+
+
+
+

Slip Opinions

+
+
+
+
+
+ +
+
+
+
+
+ +
+
+
+ +
+
+ +
+
+ +
+ +
+ +
+ +
+
+
Date
+
Case
+
+
+
+
+

+ +

+
+
+
+
+
+
Docket
+
2584CV01657-C
+
+
+
+ Keywords: MEMORANDUM OF DECISION AND ORDER ON DEFENDANTS' MOTION TO DISMISS COMPLAINT +
+ + +
+
+
+
+
Dates
+
+
+
+ February 24, 2026 +
+
+
+ +
+
+
+
+
+

+ +

+
+
+
+
+
+
Docket
+
2584CV03465-C
+
+
+
+ Keywords: MEMORANDUM OF DECISION AND ORDER ON DEFENDANT'S MOTION TO STRIKE PLAINTIFF'S PSEUDONYMITY +
+ + +
+
+
+
+
Dates
+
+
+
+ March 5, 2026 +
+
+
+ +
+
+
+
+
+

+ +

+
+
+
+
+
+
Docket
+
2584CV01006-C
+
+
+
+ Keywords: MEMORANDUM OF DECISION AND ORDER ON DEFENDANTS' MOTION TO DISMISS FIRST AMENDED COMPLAINT +
+ + +
+
+
+
+
Dates
+
+
+
+ March 5, 2026 +
+
+
+ +
+
+
+
+
+

+ +

+
+
+
+
+
+
Docket
+
2584CV01444-C
+
+
+
+ Keywords: MEMORANDUM OF DECISION AND ORDER ON PLAINTIFF'S MOTION FOR JUDGMENT ON THE PLEADINGS +
+ + +
+
+
+
+
Dates
+
+
+
+ March 11, 2026 +
+
+
+ +
+
+
+
+
+

+ +

+
+
+
+
+
+
Docket
+
2481CR00395
+
+
+
+ Keywords: MEMORANDUM OF DECISION AND ORDER ON DEFENDANT'S MOTION TO DISMISS INDICTMENTS -001 AND -003 +
+ + +
+
+
+
+
Dates
+
+
+
+ March 16, 2026 +
+
+
+ +
+
+
+
+
+ +
+
+ +
+
+
+ + +
+ +
+
+
+
+ +
+
+ Subscribe to daily email notifications of the Massachusetts Appeals Court and Supreme Judicial Court Slip Opinions. +
+
+
+ +
+
+
+ +
+
+
+
+ +
+ Related Topics +
+
+
+
+
+
+ + Services + +
+
+ Reference Assistance +
+
+

All memberships include access to the Library's expert reference team.

+
+
+ +
+
+
+
+ + Services + +
+
+ Document Delivery +
+
+

Need a case, article, or treatise? If it's in the collection, we'll get it to you fast.

+
+
+ +
+
+
+
+
+
+ +
+ + +
+ + + + + + + + + + + + + + + + + +
+ + + + + + + + + \ No newline at end of file diff --git a/tests/examples/opinions/united_states/masssuperct_example.json b/tests/examples/opinions/united_states/masssuperct_example.json deleted file mode 100644 index a8cb1bc8e..000000000 --- a/tests/examples/opinions/united_states/masssuperct_example.json +++ /dev/null @@ -1,866 +0,0 @@ -[ - { - "Id": "8599bfd2-2cac-6f3a-811a-ff00001828f1", - "Parties": "COMMONWEALTH v. JOSE ROSADO-NAZARIO", - "Context": "

DECISION AND ORDER ALLOWING DEFENDANT’S MOTION TO DISMISS PURSUANT TO G.L. C. 123, § 16(F)

", - "UrlName": "slip-opinion-details/commonwealth-v.-jose-rosado-nazario", - "SectionName": "Superior Court", - "Year": "2025", - "Month": "June", - "ArchiveDate": "June 2025", - "Dates": "November 25, 2024", - "Details": { - "ParentId": "8599bfd2-2cac-6f3a-811a-ff00001828f1", - "Docket": "2081CR00319", - "Dates": "November 25, 2024", - "Present": "Kenneth W. Salinger", - "County": "MIDDLESEX", - "Opinion": null, - "ShortOpinion": "The Commonwealth alleges that Jose Rosado-Nazario threatened to shoot someone that he knew and to damage the car that they were driving, threw a brick that damaged the car, and brandished a firearm toward that person and their companion. Mr. Rosado-Nazario has been indicted for two counts of assault with a dangerous weapon as well as unlawful possession of a firearm (second offense) and ammunition, possession of a firearm while committing a felony (which is a life felony), and malicious damage to a motor", - "Keywords": "DECISION AND ORDER ALLOWING DEFENDANT’S MOTION TO DISMISS PURSUANT TO G.L. C. 123, § 16(F)" - }, - "ActiveDate": "2025-06-30T14:00:00", - "ExpireDate": "2025-09-30T14:00:00", - "Date": "Jun 30, 2025" - }, - { - "Id": "6e8abfd2-2cac-6f3a-811a-ff00001828f1", - "Parties": "MASSACHUSETTS PREMIER SOCCER LLC D/B/A GLOBAL PREMIER SOCCER v. BURNS & LEVINSON LLP AND PERRY A. HENDERSON, JR.", - "Context": "DECISION AND ORDER ALLOWING DEFENDANTS’ MOTION FOR SUMMARY JUDGMENT", - "UrlName": "slip-opinion-details/massachusetts-premier-soccer-llc-d-b-a-global-premier-soccer-v.-burns-levinson-llp-and-perry-a.-henderson-jr", - "SectionName": "Superior Court", - "Year": "2025", - "Month": "June", - "ArchiveDate": "June 2025", - "Dates": "June 6, 2025", - "Details": { - "ParentId": "6e8abfd2-2cac-6f3a-811a-ff00001828f1", - "Docket": "2084CV00398-BLS2", - "Dates": "June 6, 2025", - "Present": "Kenneth W. Salinger", - "County": "SUFFOLK", - "Opinion": null, - "ShortOpinion": "Massachusetts Premier Soccer LLC ran a for-profit youth soccer business under the name Global Premier Soccer. The parties refer to the plaintiff as “GPS.” Many of GPS’s coaches were foreign nationals who were present in the United States under temporary, non-immigrant visas. During 2018, federal agents began to investigate GPS’s use of these visas for its coaches. Attorney Perry Henderson and his law firm Burns & Levinson were doing a broad array of corporate legal work for", - "Keywords": "DECISION AND ORDER ALLOWING DEFENDANTS’ MOTION FOR SUMMARY JUDGMENT" - }, - "ActiveDate": "2025-06-23T14:00:00", - "ExpireDate": "2025-09-23T14:00:00", - "Date": "Jun 23, 2025" - }, - { - "Id": "808abfd2-2cac-6f3a-811a-ff00001828f1", - "Parties": "WILLIAM I. KOCH; RENEGADE MANAGEMENT, INC.; AND NAUTICUS MARINA, INC. v. MARK CURLEY AND BRIDGE STREET MARINA, LLC", - "Context": "DECISION AND ORDER DENYING DEFENDANTS’ MOTION FOR PARTIAL JUDGMENT ON THE PLEADINGS", - "UrlName": "slip-opinion-details/william-i.-koch-renegade-management-inc.-and-nauticus-marina-inc.-v.-mark-curley-and-bridge-street-marina-llc", - "SectionName": "Superior Court", - "Year": "2025", - "Month": "June", - "ArchiveDate": "June 2025", - "Dates": "June 10, 2025", - "Details": { - "ParentId": "808abfd2-2cac-6f3a-811a-ff00001828f1", - "Docket": "2384CV02766-BLS2", - "Dates": "June 10, 2025", - "Present": "Kenneth W. Salinger", - "County": "SUFFOLK", - "Opinion": null, - "ShortOpinion": "Mark Curley used to work for William Koch and help to manage his assets, including through a family office company (Renegade Management, Inc.), and through a business that owned two commercial marinas and a wedding and events venue in Osterville, Massachusetts (Nauticus Marina, Inc.).\nPlaintiffs allege that Curley mismanaged Nauticus to benefit Curley and his friends, fraudulently induced Koch to transfer one of the marinas in 2015 to an entity owned and controlled by Curley (Bridge Street Marina,", - "Keywords": "DECISION AND ORDER DENYING DEFENDANTS’ MOTION FOR PARTIAL JUDGMENT ON THE PLEADINGS" - }, - "ActiveDate": "2025-06-23T14:00:00", - "ExpireDate": "2025-09-23T14:00:00", - "Date": "Jun 23, 2025" - }, - { - "Id": "928abfd2-2cac-6f3a-811a-ff00001828f1", - "Parties": "HECTOR MAZA, MONJID HAMDAN, AND CORTNEY MITTELSTEADT v. GINER, INC. AND ANDREW BELT", - "Context": "DECISION AND ORDER ALLOWING DEFENDANTS’ MOTION FOR SUMMARY JUDGMENT", - "UrlName": "slip-opinion-details/hector-maza-monjid-hamdan-and-cortney-mittelsteadt-v.-giner-inc.-and-andrew-belt", - "SectionName": "Superior Court", - "Year": "2025", - "Month": "June", - "ArchiveDate": "June 2025", - "Dates": "June 2, 2025", - "Details": { - "ParentId": "928abfd2-2cac-6f3a-811a-ff00001828f1", - "Docket": "2184CV01915-BLS2", - "Dates": "June 2, 2025", - "Present": "Kenneth W. Salinger", - "County": "SUFFOLK", - "Opinion": null, - "ShortOpinion": "Giner, Inc., is a Boston-based research and development firm that works in the electrochemical technology industry. Giner sold one of its subsidiaries in 2020.[1] As part of this transaction, Cortney Mittelsteadt, Hector Maza, and Monjid Hamdan ended their employment with Giner and became employees of Plug Power, Inc., which required these Plaintiffs to sell their shares in Giner. Andrew Belt remained with Giner and became its CEO.\nThe Plaintiffs entered into Stock Redemption Agreements that", - "Keywords": "DECISION AND ORDER ALLOWING DEFENDANTS’ MOTION FOR SUMMARY JUDGMENT" - }, - "ActiveDate": "2025-06-23T14:00:00", - "ExpireDate": "2025-09-23T14:00:00", - "Date": "Jun 23, 2025" - }, - { - "Id": "a08abfd2-2cac-6f3a-811a-ff00001828f1", - "Parties": "OLD IRONSIDES ENERGY LLC v. MARSH & MCLENNAN AGENCY LLC; MARSH LLC; MARSH USA INC.; JOHN KURKULONIS, JR.; AND EDWARD D. FITZGERALD", - "Context": "DECISION AND ORDER ON MOTIONS FOR SUMMARY JUDGMENT AND RELATED MOTIONS TO STRIKE VARIOUS THINGS", - "UrlName": "slip-opinion-details/old-ironsides-energy-llc-v.-marsh-mclennan-agency-llc-marsh-llc-marsh-usa-inc.-john-kurkulonis-jr.-and-edward-d.-fitzgerald", - "SectionName": "Superior Court", - "Year": "2025", - "Month": "June", - "ArchiveDate": "June 2025", - "Dates": "June 9, 2025", - "Details": { - "ParentId": "a08abfd2-2cac-6f3a-811a-ff00001828f1", - "Docket": "1984CV00912-BLS2", - "Dates": "June 9, 2025", - "Present": "Kenneth W. Salinger", - "County": "SUFFOLK", - "Opinion": null, - "ShortOpinion": "This action concerns allegations that Old Ironsides Energy LLC asked Marsh & McLennan Agency LLC (“MMA”) to obtain insurance coverage for costs incurred in connection with potential investigations by the Securities & Exchange Commission, MMA arranged for such coverage for individuals but not for Old Ironsides itself, and as a result Old Ironsides has been left without insurance coverage for about $20 million in attorneys’ fees that it incurred over four years in connection with", - "Keywords": "DECISION AND ORDER ON MOTIONS FOR SUMMARY JUDGMENT AND RELATED MOTIONS TO STRIKE VARIOUS THINGS" - }, - "ActiveDate": "2025-06-23T14:00:00", - "ExpireDate": "2025-09-23T14:00:00", - "Date": "Jun 23, 2025" - }, - { - "Id": "c68abfd2-2cac-6f3a-811a-ff00001828f1", - "Parties": "HAROLD PARSONS, ON BEHALF OF HIMSELF AND OTHERS SIMILARLY SITUATED v. THE COMMERCE INSURANCE COMPANY", - "Context": "DECISION AND ORDER DENYING PLAINTIFF’S MOTION FOR CLASS CERTIFICATION", - "UrlName": "slip-opinion-details/harold-parsons-on-behalf-of-himself-and-others-similarly-situated-v.-the-commerce-insurance-company", - "SectionName": "Superior Court", - "Year": "2025", - "Month": "June", - "ArchiveDate": "June 2025", - "Dates": "June 17, 2025", - "Details": { - "ParentId": "c68abfd2-2cac-6f3a-811a-ff00001828f1", - "Docket": "2084CV00659-BLS2", - "Dates": "June 17, 2025", - "Present": "Kenneth W. Salinger", - "County": "SUFFOLK", - "Opinion": null, - "ShortOpinion": "Harold Parsons was involved in a motor vehicle collision. Commerce Insurance Company insured his vehicle and deemed it to be a total loss. Parsons was therefore entitled under his insurance policy to recover the actual cash value (“ACV”) of his vehicle from Commerce, taking into account the vehicle’s age and condition before the collision. Parsons claims that Commerce offered to pay him far less than ACV, and that Commerce breached its contractual obligations and also violated G.L. c.", - "Keywords": "DECISION AND ORDER DENYING PLAINTIFF’S MOTION FOR CLASS CERTIFICATION" - }, - "ActiveDate": "2025-06-23T14:00:00", - "ExpireDate": "2025-09-23T14:00:00", - "Date": "Jun 23, 2025" - }, - { - "Id": "d68abfd2-2cac-6f3a-811a-ff00001828f1", - "Parties": "TOMMY ROYAL AND BERNADETTE COSTA,[1] INDIVIDUALLY AND ON BEHALF OF SIMILARLY SITUATED INDIVIDUALS v. ANDREW METCALF,[2] JUDGMENT ACQUISITIONS UNLIMITED INC., AND MICHAEL ZOLA[3]", - "Context": "DECISION AND ORDERS ON MOTIONS FOR SUMMARY JUDGMENT AND CLASS CERTIFICATION", - "UrlName": "slip-opinion-details/tommy-royal-and-bernadette-costa-1-individually-and-on-behalf-of-similarly-situated-individuals-v.-andrew-metcalf-2-judgment-acquisitions-unlimited-inc.-and-michael-zola-3", - "SectionName": "Superior Court", - "Year": "2025", - "Month": "June", - "ArchiveDate": "June 2025", - "Dates": "June 13, 2025", - "Details": { - "ParentId": "d68abfd2-2cac-6f3a-811a-ff00001828f1", - "Docket": "2384CV02302-BLS2", - "Dates": "June 13, 2025", - "Present": "Kenneth W. Salinger", - "County": "SUFFOLK", - "Opinion": null, - "ShortOpinion": "Tommy Royal claims that Andrew Metcalf and Judgment Acquisitions Unlimited Inc. (“JAU”) bring Massachusetts small claims debt collection actions against individuals without having chain-of-title evidence to prove they own the debt, and that they include prejudgment interest in the amounts they claim as unpaid principal. Mr. Royal asserts that these are unfair, deceptive, and unreasonable debt collection practices that violate the Massachusetts Fair Debt Collection Practices Act (G.L. c. 93,", - "Keywords": "DECISION AND ORDERS ON MOTIONS FOR SUMMARY JUDGMENT AND CLASS CERTIFICATION" - }, - "ActiveDate": "2025-06-23T14:00:00", - "ExpireDate": "2025-09-23T14:00:00", - "Date": "Jun 23, 2025" - }, - { - "Id": "b973bfd2-2cac-6f3a-811a-ff00001828f1", - "Parties": "BOSTON SEAPORT M1&2 LAND, LLC v. COMMISSIONER OF REVENUE", - "Context": "DECISION AND ORDER DENYING DEFENDANT’S MOTION TO STAY PROCEEDINGS AND AUTHORIZING PLAINTIFF TO PROCEED WITHOUT EXHAUSTING THE REMAINING ADMINISTRATIVE PROCEDURES", - "UrlName": "slip-opinion-details/boston-seaport-m1-2-land-llc-v.-commissioner-of-revenue", - "SectionName": "Superior Court", - "Year": "2025", - "Month": "June", - "ArchiveDate": "June 2025", - "Dates": "May 28, 2025", - "Details": { - "ParentId": "b973bfd2-2cac-6f3a-811a-ff00001828f1", - "Docket": "2584CV00039-BLS2", - "Dates": "May 28, 2025", - "Present": "Kenneth W. Salinger", - "County": "SUFFOLK", - "Opinion": null, - "ShortOpinion": "Boston Seaport M1&2 Land, LLC, contends that it is entitled to a Brownfields tax credit for costs it incurred to remediate environmental contamination of property in Boston. The Department of Revenue issued a Final Determination denying Boston Seaport’s application for such a credit under G.L. c. 63, § 38Q,[1] back in February 2023. Boston Seaport promptly filed an administrative appeal, which is still pending more than two years later. Boston Seaport filed this action in January 2025,", - "Keywords": "DECISION AND ORDER DENYING DEFENDANT’S MOTION TO STAY PROCEEDINGS AND AUTHORIZING PLAINTIFF TO PROCEED WITHOUT EXHAUSTING THE REMAINING ADMINISTRATIVE PROCEDURES" - }, - "ActiveDate": "2025-06-11T14:00:00", - "ExpireDate": "2025-09-10T14:00:00", - "Date": "Jun 11, 2025" - }, - { - "Id": "d073bfd2-2cac-6f3a-811a-ff00001828f1", - "Parties": "CMFG LIFE INSURANCE COMPANY; CUNA BROKERAGE SERVICES, INC.; AND CUNA MUTUAL INSURANCE AGENCY, INC. v. EARNEST CONSULTING GROUP, LLC; COMMONWEALTH FINANCIAL CORPORATION; OM FINANCIAL GROUP, LLC; BRUCE BAUER; BROOKS BERARDI; MICHAEL BREMER; JOHN ELLIS;", - "Context": "DECISION AND ORDER ON DEFENDANTS’ MOTIONS FOR SUMMARY JUDGMENT", - "UrlName": "slip-opinion-details/cmfg-life-insurance-company-cuna-brokerage-services-inc.-and-cuna-mutual-insurance-agency-inc.-v.-earnest-consulting-group-llc-commonwealth-financial-corporation-om-financial-group-llc-bruce-bauer-brooks-berardi-michael-bremer-john-ellis", - "SectionName": "Superior Court", - "Year": "2025", - "Month": "June", - "ArchiveDate": "June 2025", - "Dates": "May 27, 2025", - "Details": { - "ParentId": "d073bfd2-2cac-6f3a-811a-ff00001828f1", - "Docket": "2384CV02196-BLS2", - "Dates": "May 27, 2025", - "Present": "Kenneth W. Salinger", - "County": "SUFFOLK", - "Opinion": null, - "ShortOpinion": "The Plaintiffs provide insurance and other financial services and products. These affiliated companies are based in Wisconsin and now do business under the tradename TruStage. Bruce Bauer, Andrew Rocket, Brooks Berardi, Michael Bremer, and John Ellis (the “Former Employees”) used to work for TruStage in various States. They resigned in August 2023 to accept employment at Earnest Consulting Group, which is owned by OM Financial Group and also affiliated with Commonwealth Financial Corporation", - "Keywords": "DECISION AND ORDER ON DEFENDANTS’ MOTIONS FOR SUMMARY JUDGMENT" - }, - "ActiveDate": "2025-06-11T14:00:00", - "ExpireDate": "2025-09-11T14:00:00", - "Date": "Jun 11, 2025" - }, - { - "Id": "de73bfd2-2cac-6f3a-811a-ff00001828f1", - "Parties": "SHANNON O' BRIEN v. DEBORAH GOLDBERG[1]", - "Context": "

MEMORANDUM OF DECISION AND ORDER ON THE MOTIONS OF DEFENDANT AND CERTAIN CURRENT AND FORMER EMPLOYEES OF THE CANNABIS CONTROL COMMISSION TO IMPOUND THE ADMINISTRATIVE RECORD

", - "UrlName": "slip-opinion-details/shannon-o'-brien-v.-deborah-goldberg-1", - "SectionName": "Superior Court", - "Year": "2025", - "Month": "June", - "ArchiveDate": "June 2025", - "Dates": "June 4, 2025", - "Details": { - "ParentId": "de73bfd2-2cac-6f3a-811a-ff00001828f1", - "Docket": "2484CV03009-C", - "Dates": "June 4, 2025", - "Present": "Robert B. Gordon", - "County": "SUFFOLK", - "Opinion": null, - "ShortOpinion": "            Plaintiff Shannon O'Brien (\"O'Brien\" or the \"Plaintiff') brought this action in the nature of certiorari under G.L. c. 249, § 4, challenging the decision of Defendant Deborah Goldberg, Treasurer and Receiver General of the Commonwealth of Massachusetts (the \"Treasurer''), to remove her as Chair of the Cannabis Control Commission (the \"CCC\"). Before the Court are the Treasurer's Provisional Motion to Impound the Administrative Record of the underlying", - "Keywords": "MEMORANDUM OF DECISION AND ORDER ON THE MOTIONS OF DEFENDANT AND CERTAIN CURRENT AND FORMER EMPLOYEES OF THE CANNABIS CONTROL COMMISSION TO IMPOUND THE ADMINISTRATIVE RECORD" - }, - "ActiveDate": "2025-06-11T14:00:00", - "ExpireDate": "2025-09-11T14:00:00", - "Date": "Jun 11, 2025" - }, - { - "Id": "7354bfd2-2cac-6f3a-811a-ff00001828f1", - "Parties": "CLEAR BLUE SPECIALTY INSURANCE COMPANY v. R-SVP II, L.L.C.; BP SIDECAR INVESTMENT III, LLC; BPI CREDIT 3, LLC; BPI CREDIT 4, LLC; AND BPI CREDIT 5, LLC", - "Context": "DECISION AND ORDER DENYING CLEAR BLUE’S MOTION TO DISMISS THE AMENDED COUNTERCLAIMS", - "UrlName": "slip-opinion-details/clear-blue-specialty-insurance-company-v.-r-svp-ii-l.l.c.-bp-sidecar-investment-iii-llc-bpi-credit-3-llc-bpi-credit-4-llc-and-bpi-credit-5-llc", - "SectionName": "Superior Court", - "Year": "2025", - "Month": "June", - "ArchiveDate": "June 2025", - "Dates": "May 15, 2025", - "Details": { - "ParentId": "7354bfd2-2cac-6f3a-811a-ff00001828f1", - "Docket": "2484CV01898-BLS2", - "Dates": "May 15, 2025", - "Present": "Kenneth W. Salinger Justice of the Superior Court", - "County": "SUFFOLK", - "Opinion": null, - "ShortOpinion": "This action concerns the scope of Clear Blue Specialty Insurance Company’s obligations under a complex, multi-level reinsurance structure. Clear Blue is seeking a declaration that it owes nothing under its reinsurance certificates. The BPI Insureds (R-SPV II, L.L.C., BPI Credit 3, LLC, and BPI Credit 4, LLC) assert amended counterclaims for breach of contract damages, seeking their own declaratory relief, and claiming that Clear Blue violated G.L. c. 93A.\nThe Court will deny Clear", - "Keywords": "DECISION AND ORDER DENYING CLEAR BLUE’S MOTION TO DISMISS THE AMENDED COUNTERCLAIMS" - }, - "ActiveDate": "2025-06-03T14:00:00", - "ExpireDate": "2025-09-03T14:00:00", - "Date": "Jun 03, 2025" - }, - { - "Id": "8354bfd2-2cac-6f3a-811a-ff00001828f1", - "Parties": "HEMBIO, INC. F/K/A HEMERA BIOSCIENCES, INC. v. PAUL FIREMAN, ADAM ROGERS, AND HEMERA BIOSCIENCES, LLC", - "Context": "FINDINGS AND CONCLUSIONS AFTER A BENCH TRIAL", - "UrlName": "slip-opinion-details/hembio-inc.-f-k-a-hemera-biosciences-inc.-v.-paul-fireman-adam-rogers-and-hemera-biosciences-llc", - "SectionName": "Superior Court", - "Year": "2025", - "Month": "June", - "ArchiveDate": "June 2025", - "Dates": "May 13, 2025", - "Details": { - "ParentId": "8354bfd2-2cac-6f3a-811a-ff00001828f1", - "Docket": "2184CV01346-BLS2", - "Dates": "May 13, 2025", - "Present": "Kenneth W. Salinger Justice of the Superior Court", - "County": "SUFFOLK", - "Opinion": null, - "ShortOpinion": "Hembio, Inc., was founded to develop a gene therapy treatment for age-related macular degeneration, which over time degrades the part of the retina needed for clear central vision. Paul Fireman held the largest minority ownership interest in Hembio. His son-in-law Adam Rogers was chief executive officer and a director. When the company was unable to raise funds needed to continue its clinical trials, and about to run out of cash, Hembio sold its assets to Hemera Biosciences, LLC, a new company formed and", - "Keywords": "FINDINGS AND CONCLUSIONS AFTER A BENCH TRIAL" - }, - "ActiveDate": "2025-06-03T14:00:00", - "ExpireDate": "2025-09-10T14:00:00", - "Date": "Jun 03, 2025" - }, - { - "Id": "9454bfd2-2cac-6f3a-811a-ff00001828f1", - "Parties": "MOSHE YANAI, RACHEL YANAI, AND MICHAL INTERNATIONAL INVESTMENT LLC v. ZACK KEINAN, INDIVIDUALLY AND AS GENERAL PARTNER OF SCINTILLA HOLDINGS, LTD.; SCINTILLA HOLDINGS, LTD., AS GENERAL PARTNER OF SCINTILLA FUND, L.P.; AND BOAZ TOSHAV", - "Context": "DECISION AND  ORDER ON  MOTION BY  ZACK KEINAN, SCINTILLA HOLDINGS, LTD., AND SCINTILLA FUND, L.P. TO DISMISS ALL CLAIMS AGAINST THEM, AND ON PLAINTIFFS’ MOTION FOR PARTIAL JUDGMENT ON THE PLEADINGS", - "UrlName": "slip-opinion-details/moshe-yanai-rachel-yanai-and-michal-international-investment-llc-v.-zack-keinan-individually-and-as-general-partner-of-scintilla-holdings-ltd.-scintilla-holdings-ltd.-as-general-partner-of-scintilla-fund-l.p.-and-boaz-toshav1", - "SectionName": "Superior Court", - "Year": "2025", - "Month": "June", - "ArchiveDate": "June 2025", - "Dates": "May 22, 2025", - "Details": { - "ParentId": "9454bfd2-2cac-6f3a-811a-ff00001828f1", - "Docket": "2584CV00565-BLS2", - "Dates": "May 22, 2025", - "Present": "Kenneth W. Salinger Justice of the Superior Court", - "County": "SUFFOLK", - "Opinion": null, - "ShortOpinion": "Scintilla Fund, L.P. (the “Fund”) made a series of loans to Michal International Investment LLC (“MII”). The outstanding balance is more than $33 million. The loan terms were set out in several Facilities Agreements and later modified in a Side Letter. Moshe Yanai personally guaranteed repayment. In addition, Moshe and Rachel Yanai pledged their membership interests in MII as security. After a series of defaults, the Fund, Yanai, MII, and an MII affiliate entered into an Omnibus", - "Keywords": "DECISION AND ORDER ON MOTION BY ZACK KEINAN, SCINTILLA HOLDINGS, LTD., AND SCINTILLA FUND, L.P. TO DISMISS ALL CLAIMS AGAINST THEM, AND ON PLAINTIFFS’ MOTION FOR PARTIAL JUDGMENT ON THE PLEADINGS" - }, - "ActiveDate": "2025-06-03T14:00:00", - "ExpireDate": "2025-09-03T14:00:00", - "Date": "Jun 03, 2025" - }, - { - "Id": "c03bbfd2-2cac-6f3a-811a-ff00001828f1", - "Parties": "COMMONWEALTH v. JEIFFRY ROSARIO", - "Context": "MEMORANDUM OF DECISION AND ORDER ON DEFENDANT'S MOTION TO SUPPRESS (Paper No. 19)", - "UrlName": "slip-opinion-details/commonwealth-v.-jeiffry-rosario", - "SectionName": "Superior Court", - "Year": "2025", - "Month": "May", - "ArchiveDate": "May 2025", - "Dates": "June 21, 2024", - "Details": { - "ParentId": "c03bbfd2-2cac-6f3a-811a-ff00001828f1", - "Docket": "2284CR00697", - "Dates": "June 21, 2024", - "Present": "William F. Bloomer Justice of the Superior", - "County": "SUFFOLK", - "Opinion": null, - "ShortOpinion": "            The defendant, Jeiffry Rosario (\"Rosario\"), moves to suppress a firearm seized from him by members of the Boston Police Department (\"BPD\") on August 1, 2022, in Dorchester. Following a hearing, and for the reasons set forth below, Rosario's motion to suppress is DENIED.\nFINDINGS OF FACT\n            On June 3, 2024, the court heard testimony from BPD Detective Christopher", - "Keywords": "MEMORANDUM OF DECISION AND ORDER ON DEFENDANT'S MOTION TO SUPPRESS (Paper No. 19)" - }, - "ActiveDate": "2025-05-23T14:00:00", - "ExpireDate": "2025-08-23T14:00:00", - "Date": "May 23, 2025" - }, - { - "Id": "d83bbfd2-2cac-6f3a-811a-ff00001828f1", - "Parties": "COMMONWEALTH OF MASSACHUSETTS v. JERRELL GREENE-MARTIN", - "Context": "MEMORANDUM OF DECISION AND ORDER ON DEFENDANT'S MOTIONS TO SUPPRESS (Paper Nos. 6, 20)", - "UrlName": "slip-opinion-details/commonwealth-of-massachusetts-v.-jerrell-greene-martin", - "SectionName": "Superior Court", - "Year": "2025", - "Month": "May", - "ArchiveDate": "May 2025", - "Dates": "February 6, 2024", - "Details": { - "ParentId": "d83bbfd2-2cac-6f3a-811a-ff00001828f1", - "Docket": "2284CR00723", - "Dates": "February 6, 2024", - "Present": "William F. Bloomer Justice of the Superior Court", - "County": "SUFFOLK", - "Opinion": null, - "ShortOpinion": "            The defendant, Jerrell Greene-Martin (\"Greene-Martin\"), is charged with trafficking in more than eighteen (18) but less than thirty-six (36) grams of cocaine, and trafficking in ten (10) grams or more of fentanyl. Greene-Martin moves lo suppress the narcotics seized by members of the Boston Police Department (\"BPD\") during a motor vehicle stop on July 21, 2022, in", - "Keywords": "MEMORANDUM OF DECISION AND ORDER ON DEFENDANT'S MOTIONS TO SUPPRESS (Paper Nos. 6, 20)" - }, - "ActiveDate": "2025-05-23T14:00:00", - "ExpireDate": "2025-08-23T14:00:00", - "Date": "May 23, 2025" - }, - { - "Id": "e83bbfd2-2cac-6f3a-811a-ff00001828f1", - "Parties": "COMMONWEALTH v. JONATHAN THEBAUD", - "Context": "MEMORANDUM OF DECISION AND ORDER ON DEFENDANT'S MOTION TO SUPPRESS THE SEARCHES OF FOUR CELL PHONES (Paper No. 43)", - "UrlName": "slip-opinion-details/commonwealth-v.-jonathan-thebaud", - "SectionName": "Superior Court", - "Year": "2025", - "Month": "May", - "ArchiveDate": "May 2025", - "Dates": "May 24, 2024", - "Details": { - "ParentId": "e83bbfd2-2cac-6f3a-811a-ff00001828f1", - "Docket": "2284CR00385", - "Dates": "May 24, 2024", - "Present": "William F. Bloomer Justice of the Superior Court", - "County": "SUFFOLK", - "Opinion": null, - "ShortOpinion": "            The defendant, Jonathan Thebaud (\"Thebaud\"), moves to suppress evidence seized by police from four cellphones during the execution of search warrants. Thebaud previously moved to suppress other evidence seized in connection with the execution of warrants that authorized the search of: (1) a Cadillac SRX SUV bearing MA registration 1THS11, registered to him (the \"Cadillac\") (Paper No. 15); (2) CSLI data associated with his cellphone (Paper", - "Keywords": "MEMORANDUM OF DECISION AND ORDER ON DEFENDANT'S MOTION TO SUPPRESS THE SEARCHES OF FOUR CELL PHONES (Paper No. 43)" - }, - "ActiveDate": "2025-05-23T14:00:00", - "ExpireDate": "2025-08-23T14:00:00", - "Date": "May 23, 2025" - }, - { - "Id": "f63bbfd2-2cac-6f3a-811a-ff00001828f1", - "Parties": "COMMONWEALTH v. JOSE PINERO", - "Context": "

MEMORANDUM OF DECISION AND ORDER ON DEFENDANT'S MOTION TO SUPPRESS IDENTIFICATION (Paper No. 35)

", - "UrlName": "slip-opinion-details/commonwealth-v.-jose-pinero", - "SectionName": "Superior Court", - "Year": "2025", - "Month": "May", - "ArchiveDate": "May 2025", - "Dates": "William F. Bloomer Justice of the Superior Court", - "Details": { - "ParentId": "f63bbfd2-2cac-6f3a-811a-ff00001828f1", - "Docket": "2284CR00776", - "Dates": "William F. Bloomer Justice of the Superior Court", - "Present": "July 16, 2024", - "County": "SUFFOLK", - "Opinion": null, - "ShortOpinion": "            The defendant, Jose Pinero (\"Pinero\"), moves to suppress an out-of-court photographic array and any in-court identifications made of him by a Commonwealth witness, Kevin Ramsey (\" Ramsey\"). following a hearing, and for the reasons set forth below, Pinero's motion to\nsuppress identification is DENIED.\nFINDINGS OF FACT\n            On June 6, 2024, the court heard", - "Keywords": "MEMORANDUM OF DECISION AND ORDER ON DEFENDANT'S MOTION TO SUPPRESS IDENTIFICATION (Paper No. 35)" - }, - "ActiveDate": "2025-05-23T14:00:00", - "ExpireDate": "2025-08-23T14:00:00", - "Date": "May 23, 2025" - }, - { - "Id": "063cbfd2-2cac-6f3a-811a-ff00001828f1", - "Parties": "COMMONWEALTH OF MASSACHUSETTS v. JUSTICE M. SKELTON", - "Context": "DECISION AND ORDER ON DEFENDANT'S MOTION TO SUPPRESS EVIDENCE UNDER LONG (Paper No. 33) AND SUPPLEMENTAL MOTION TO SUPPRESS (Paper No. 34)", - "UrlName": "slip-opinion-details/commonwealth-of-massachusetts-v.-justice-m.-skelton", - "SectionName": "Superior Court", - "Year": "2025", - "Month": "May", - "ArchiveDate": "May 2025", - "Dates": "May 16, 2024", - "Details": { - "ParentId": "063cbfd2-2cac-6f3a-811a-ff00001828f1", - "Docket": "2284CR438", - "Dates": "May 16, 2024", - "Present": "William F. Bloomer Justice of the Superior Court", - "County": "SUFFOLK", - "Opinion": null, - "ShortOpinion": "            The defendant, Justice M. Skelton (\"Skelton\"), moves to suppress fentanyl and cocaine seized from his vehicle on August 24, 2021, following a stop based upon violations of motor vehicle laws. Skelton alleges violations of his rights under the Equal Protection Clause of the Fourteenth Amendment to the United States Constitution and arts. 1 and 10 of the Massachusetts Declaration of Rights (Paper No. 33). Skelton further seeks suppression", - "Keywords": "DECISION AND ORDER ON DEFENDANT'S MOTION TO SUPPRESS EVIDENCE UNDER LONG (Paper No. 33) AND SUPPLEMENTAL MOTION TO SUPPRESS (Paper No. 34)" - }, - "ActiveDate": "2025-05-23T14:00:00", - "ExpireDate": "2025-08-23T14:00:00", - "Date": "May 23, 2025" - }, - { - "Id": "1a3cbfd2-2cac-6f3a-811a-ff00001828f1", - "Parties": "COMMONWEALTH v. KAMAL OLIVER", - "Context": "

MEMORANDUM OF DECISION AND ORDER ON DEFENDANT'S MOTION TO SUPPRESS IDENTIFICATION (Paper No. 65)

", - "UrlName": "slip-opinion-details/commonwealth-v.-kamal-oliver", - "SectionName": "Superior Court", - "Year": "2025", - "Month": "May", - "ArchiveDate": "May 2025", - "Dates": "April 29, 2024", - "Details": { - "ParentId": "1a3cbfd2-2cac-6f3a-811a-ff00001828f1", - "Docket": "2284CR00555", - "Dates": "April 29, 2024", - "Present": "William F. Bloomer Justice of the Superior Court", - "County": "SUFFOLK", - "Opinion": null, - "ShortOpinion": "            The defendant, Kamal Oliver (\"Oliver\"), moves to suppress a single-photo identification of him by a civilian witness, Amiyah Chaney (\"Chancy\"), on August 24, 2022, during an investigation into the shooting death of Xavier I3arkon (\"Barkon\" or the \" victim\") twelve days earlier. Following a hearing, and for the reasons set forth below, Oliver's motion to suppress is\nDENIED.\nFINDINGS  OF", - "Keywords": "MEMORANDUM OF DECISION AND ORDER ON DEFENDANT'S MOTION TO SUPPRESS IDENTIFICATION (Paper No. 65)" - }, - "ActiveDate": "2025-05-23T14:00:00", - "ExpireDate": "2025-08-23T14:00:00", - "Date": "May 23, 2025" - }, - { - "Id": "283cbfd2-2cac-6f3a-811a-ff00001828f1", - "Parties": "COMMONWEALTH vs. KAO LANOIS", - "Context": "

MEMORANDUM OF DECISION AND ORDER ON DEFENDANT'S MOTION TO SUPPRESS EVIDENCE (Paper No. 9)

", - "UrlName": "slip-opinion-details/commonwealth-vs.-kao-lanois", - "SectionName": "Superior Court", - "Year": "2025", - "Month": "May", - "ArchiveDate": "May 2025", - "Dates": "April 28, 2025", - "Details": { - "ParentId": "283cbfd2-2cac-6f3a-811a-ff00001828f1", - "Docket": "2477CR00470", - "Dates": "April 28, 2025", - "Present": "William F. Bloomer Justice of the Superior Court", - "County": "ESSEX", - "Opinion": null, - "ShortOpinion": "            Defendant Kao Langis (\"Langis\" or the \"defendant\") is charged with, inter alia, the unlawful possession of firearms and a large capacity feeding device. He moves to suppress evidence discovered by police during the warrantless search of a backpack found in his bedroom and other incriminating items subsequently seized pursuant to search warrants.\n            On April 11, 2015,", - "Keywords": "MEMORANDUM OF DECISION AND ORDER ON DEFENDANT'S MOTION TO SUPPRESS EVIDENCE (Paper No. 9)" - }, - "ActiveDate": "2025-05-23T14:00:00", - "ExpireDate": "2025-08-23T14:00:00", - "Date": "May 23, 2025" - }, - { - "Id": "3a3cbfd2-2cac-6f3a-811a-ff00001828f1", - "Parties": "COMMONWEALTH v. MELVIN RILEY AND SAMANTHA ROGERS", - "Context": "MEMORANDUM OF DECISION AND ORDER ON COMMONWEALTH'S MOTION FOR JOINDER OF DEFENDANTS AND JOINDER OF INDICTMENTS", - "UrlName": "slip-opinion-details/commonwealth-v.-melvin-riley-and-samantha-rogers", - "SectionName": "Superior Court", - "Year": "2025", - "Month": "May", - "ArchiveDate": "May 2025", - "Dates": "April 10, 2025", - "Details": { - "ParentId": "3a3cbfd2-2cac-6f3a-811a-ff00001828f1", - "Docket": "2477CR0076 / 2477CR0077", - "Dates": "April 10, 2025", - "Present": "William F. Bloomer Associate Justice, Superior Court", - "County": "ESSEX", - "Opinion": null, - "ShortOpinion": "            Defendant Melvin Riley (\"Riley\") is charged with two counts of rape of a child with force, two counts of aggravated rape of a child (ten-year age difference), three counts of indecent assault and battery on a child over 14 years of age, one count of strangulation, and one count of assault and battery by means of a dangerous weapon (Case No. 2477CR0076). Defendant Samantha Rogers (\"Rogers\") is charged separately with two counts of assault", - "Keywords": "MEMORANDUM OF DECISION AND ORDER ON COMMONWEALTH'S MOTION FOR JOINDER OF DEFENDANTS AND JOINDER OF INDICTMENTS" - }, - "ActiveDate": "2025-05-23T14:00:00", - "ExpireDate": "2025-08-23T14:00:00", - "Date": "May 23, 2025" - }, - { - "Id": "483cbfd2-2cac-6f3a-811a-ff00001828f1", - "Parties": "COMMONWEALTH v. STEVEN COACHMAN", - "Context": "MEMORANDUM OF DECISION AND ORDER ON DEFENDANT'S MOTION TO SUPPRESS (Paper No. 9)", - "UrlName": "slip-opinion-details/commonwealth-v.-steven-coachman", - "SectionName": "Superior Court", - "Year": "2025", - "Month": "May", - "ArchiveDate": "May 2025", - "Dates": "May 6, 2024", - "Details": { - "ParentId": "483cbfd2-2cac-6f3a-811a-ff00001828f1", - "Docket": "2384CR00024", - "Dates": "May 6, 2024", - "Present": "William F. Bloomer Justice of the Superior Court", - "County": "SUFFOLK", - "Opinion": null, - "ShortOpinion": "            The defendant, Steven Coachman (\"Coachman\"), moves to suppress a firearm seized by police officers from his vehicle on October 7, 2022, as well as his statements to an officer after his arrest. Following a hearing, and for the reasons set forth below, Coachman ' s motion to\nsuppress is DENIED.\nFINDINGS OF FACT\n            On April 25, 2024, the court heard", - "Keywords": "MEMORANDUM OF DECISION AND ORDER ON DEFENDANT'S MOTION TO SUPPRESS (Paper No. 9)" - }, - "ActiveDate": "2025-05-23T14:00:00", - "ExpireDate": "2025-08-23T14:00:00", - "Date": "May 23, 2025" - }, - { - "Id": "583cbfd2-2cac-6f3a-811a-ff00001828f1", - "Parties": "COMMONWEALTH vs. WILSON RUIZ-MARTINEZ", - "Context": "MEMORANDUM OF DECISION AND ORDER ON DEFENDANT'S MOTION TO SUPPRESS EVIDENCE {Paper No. 37)", - "UrlName": "slip-opinion-details/commonwealth-vs.-wilson-ruiz-martinez", - "SectionName": "Superior Court", - "Year": "2025", - "Month": "May", - "ArchiveDate": "May 2025", - "Dates": "July 15, 2024", - "Details": { - "ParentId": "583cbfd2-2cac-6f3a-811a-ff00001828f1", - "Docket": "2284CR00510", - "Dates": "July 15, 2024", - "Present": "William F. Bloomer Justice of the Superior Court", - "County": "SUFFOLK", - "Opinion": null, - "ShortOpinion": "            The defendant, Wilson Ruiz-Martinez (\"Ruiz-Martinez\"), moves to suppress all evidence seized by police from 31 Gayland Street, Apartment #3 in Dorchester, as well as a storage room located in the basement of that address. fallowing a hearing, and for the reasons set forth below, Ruiz-Martinez's motion to suppress is DENIED.\nFINDINGS OF FACT\n            On May 7, May 23,", - "Keywords": "MEMORANDUM OF DECISION AND ORDER ON DEFENDANT'S MOTION TO SUPPRESS EVIDENCE {Paper No. 37)" - }, - "ActiveDate": "2025-05-23T14:00:00", - "ExpireDate": "2025-08-23T14:00:00", - "Date": "May 23, 2025" - }, - { - "Id": "663cbfd2-2cac-6f3a-811a-ff00001828f1", - "Parties": "COMMONWEALTH vs. WORLKENS METELLUS", - "Context": "MEMORANDUM OF DECISION AND ORDER ON DEFENDANT'S MOTION TO SUPPRESS CUSTODIAL STATEMENTS ATTRIBUTED TO DEFENDANT (Paper No. 78)", - "UrlName": "slip-opinion-details/commonwealth-vs.-worlkens-metellus", - "SectionName": "Superior Court", - "Year": "2025", - "Month": "May", - "ArchiveDate": "May 2025", - "Dates": "February 14, 2024", - "Details": { - "ParentId": "663cbfd2-2cac-6f3a-811a-ff00001828f1", - "Docket": "2184CR00261", - "Dates": "February 14, 2024", - "Present": "William F. Bloomer Justice of the Superior Court", - "County": "SUFFOLK", - "Opinion": null, - "ShortOpinion": "            The defendant, Worlkens Metellus (\"Metellus\"), is charged with, among other things, assault with intent to murder and assault and battery by means of a dangerous weapon resulting in serious bodily injury. The Commonwealth alleges that in the early morning hours of December 31, 2020, Metellus and co-defendant, Regina Registre (\"Registre\"), attacked Roxanne Duncan (\"Duncan\") first in a vehicle and later in the area of Mattakeeset Street in", - "Keywords": "MEMORANDUM OF DECISION AND ORDER ON DEFENDANT'S MOTION TO SUPPRESS CUSTODIAL STATEMENTS ATTRIBUTED TO DEFENDANT (Paper No. 78)" - }, - "ActiveDate": "2025-05-23T14:00:00", - "ExpireDate": "2025-08-23T14:00:00", - "Date": "May 23, 2025" - }, - { - "Id": "783cbfd2-2cac-6f3a-811a-ff00001828f1", - "Parties": "COMMONWEALTH vs. YULIAN ROSADO", - "Context": "MEMORANDUM OF DECISION AND ORDER ON DEFENDANT'S MOTION TO SUPPRESS EVIDENCE (Paper No. 24 and 31) AND MOTION TO SUPPRESS SEARCH WARRANT PURSUANT TO FRANKS v. DELAWARE (Paper No. 32)", - "UrlName": "slip-opinion-details/commonwealth-vs.-yulian-rosado", - "SectionName": "Superior Court", - "Year": "2025", - "Month": "May", - "ArchiveDate": "May 2025", - "Dates": "June 3, 2024", - "Details": { - "ParentId": "783cbfd2-2cac-6f3a-811a-ff00001828f1", - "Docket": "2384CR00091", - "Dates": "June 3, 2024", - "Present": "William F. Bloomer Justice of the Superior Court", - "County": "SUFFOLK", - "Opinion": null, - "ShortOpinion": "            The defendant, Yulian Rosado (\"Rosado\"), moves to suppress evidence seized by police during the execution of a federal search warrant issued for 18 Rector Road, Apartment 3, in Mattapan. In his pursuit of suppression of evidence, Rosado also requests that the court conduct a hearing pursuant to Franks v. Delaware, 438 U.S. 154 (1978). After hearing, and for the\nreasons set forth below, Rosado's motions are", - "Keywords": "MEMORANDUM OF DECISION AND ORDER ON DEFENDANT'S MOTION TO SUPPRESS EVIDENCE (Paper No. 24 and 31) AND MOTION TO SUPPRESS SEARCH WARRANT PURSUANT TO FRANKS v. DELAWARE (Paper No. 32)" - }, - "ActiveDate": "2025-05-23T14:00:00", - "ExpireDate": "2025-08-23T14:00:00", - "Date": "May 23, 2025" - }, - { - "Id": "8a3cbfd2-2cac-6f3a-811a-ff00001828f1", - "Parties": "KECHES LAW GROUP, P.C. Plaintiff vs. STEVEN SEMENZA, at al, Defendants", - "Context": "MEMORANDUM AND ORDER ON DEFENDANT STEVEN SEMENZA'S MOTION TO DISMISS", - "UrlName": "slip-opinion-details/keches-law-group-p.c.-plaintiff-vs.-steven-semenza-at-al-defendants", - "SectionName": "Superior Court", - "Year": "2025", - "Month": "May", - "ArchiveDate": "May 2025", - "Dates": "April 2, 2025", - "Details": { - "ParentId": "8a3cbfd2-2cac-6f3a-811a-ff00001828f1", - "Docket": "2482CV0790", - "Dates": "April 2, 2025", - "Present": "The Honorable James Budreau Justice of the Superior Court", - "County": "NORFOLK", - "Opinion": null, - "ShortOpinion": "            Plaintiff Keches Law Group P.C. (\"plaintiff' or '1Keches'') filed this lawsuit against defendants Kelly Injury Lawyers P.C. (\"Kelly\") and attorney Steven Semenza (\"Semenza\") claiming that Kelly breached their referral agreement (Count I), both Kelly and Semenza have been unjustly enriched by wrongfully retaining or refusing to pay the plaintiffs referral fee (Count II), and Semenza tortiously interfered with the referral agreement (Count", - "Keywords": "MEMORANDUM AND ORDER ON DEFENDANT STEVEN SEMENZA'S MOTION TO DISMISS" - }, - "ActiveDate": "2025-05-23T14:00:00", - "ExpireDate": "2025-08-23T14:00:00", - "Date": "May 23, 2025" - }, - { - "Id": "e31bbfd2-2cac-6f3a-811a-ff00001828f1", - "Parties": "694 WORCESTER ST LLC AND OTHERS[1] v. CCP COUNTER MANOR 0507 LLC AND OTHERS[2]", - "Context": "DECISION AND ORDER DENYING DEFENDANTS’ MOTION TO DISMISS COUNTS TWO AND THREE", - "UrlName": "slip-opinion-details/694-worcester-st-llc-and-others-1-v.-ccp-counter-manor-0507-llc-and-others-2", - "SectionName": "Superior Court", - "Year": "2025", - "Month": "May", - "ArchiveDate": "May 2025", - "Dates": "April 1, 2025", - "Details": { - "ParentId": "e31bbfd2-2cac-6f3a-811a-ff00001828f1", - "Docket": "2484CV03284-BLS2", - "Dates": "April 1, 2025", - "Present": "Kenneth W. Salinger Justice of the Superior Court", - "County": "SUFFOLK", - "Opinion": null, - "ShortOpinion": "Defendants sold five Massachusetts skilled nursing facilities to the Plaintiffs. A Massachusetts Department of Public Health “de-densification regulation” had taken effect several months earlier; it provides that no resident bedroom in such a facility may contain more than two beds. That rule is being challenged in court. The parties agreed that whether the DPH rule was enforceable would affect the fair price for these facilities. They entered into an escrow agreement providing that $5.5", - "Keywords": "DECISION AND ORDER DENYING DEFENDANTS’ MOTION TO DISMISS COUNTS TWO AND THREE" - }, - "ActiveDate": "2025-05-12T14:00:00", - "ExpireDate": "2025-08-12T14:00:00", - "Date": "May 12, 2025" - }, - { - "Id": "f61bbfd2-2cac-6f3a-811a-ff00001828f1", - "Parties": "COMMONWEALTH OF MASSACHUSETTS v. MV REALTY PBC, LLC; MV OF MASSACHUSETTS, LLC; MV BROKERAGE OF MASSACHUSETTS, LLC; MV REALTY HOLDINGS, LLC; MV REALTY RECEIVABLES 1, LLC; MV RECEIVABLES II, LLC; MV RECEIVABLES III,", - "Context": "DECISION AND ORDER ON THE COMMONWEALTH’S MOTION FOR SUMMARY JUDGMENT", - "UrlName": "slip-opinion-details/commonwealth-of-massachusetts-v.-mv-realty-pbc-llc-mv-of-massachusetts-llc-mv-brokerage-of-massachusetts-llc-mv-realty-holdings-llc-mv-realty-receivables-1-llc-mv-receivables-ii-llc-mv-receivables-iii", - "SectionName": "Superior Court", - "Year": "2025", - "Month": "May", - "ArchiveDate": "May 2025", - "Dates": "April 18, 2025", - "Details": { - "ParentId": "f61bbfd2-2cac-6f3a-811a-ff00001828f1", - "Docket": "2284CV02823-BLS2", - "Dates": "April 18, 2025", - "Present": "Kenneth W. Salinger Justice of the Superior Court", - "County": "SUFFOLK", - "Opinion": null, - "ShortOpinion": "MV Realty PBC, LLC, and MV of Massachusetts, LLC engaged in the business of advancing money to cash-strapped Massachusetts homeowners in exchange for a 40-year exclusive right to list their home for sale, with a right to repayment of at least 10 times the original loan amount upon a future sale or transfer of the property, and more if property values have increased. The Court recently defaulted these two entities for repeated discovery violations and ordered that they be deemed liable on all claims", - "Keywords": "DECISION AND ORDER ON THE COMMONWEALTH’S MOTION FOR SUMMARY JUDGMENT" - }, - "ActiveDate": "2025-05-12T14:00:00", - "ExpireDate": "2025-08-12T14:00:00", - "Date": "May 12, 2025" - }, - { - "Id": "061cbfd2-2cac-6f3a-811a-ff00001828f1", - "Parties": "STEVEN B. DEUTSCH AND JOYCE I. GREENBERG v. PRIVILEGE UNDERWRITERS RECIPROCAL EXCHANGE", - "Context": "DECISION AND ORDER ON PLAINTIFFS’ MOTION FOR LEAVE TO FILE A SECOND AMENDED COMPLAINT", - "UrlName": "slip-opinion-details/steven-b.-deutsch-and-joyce-i.-greenberg-v.-privilege-underwriters-reciprocal-exchange", - "SectionName": "Superior Court", - "Year": "2025", - "Month": "May", - "ArchiveDate": "May 2025", - "Dates": "April 16, 2025", - "Details": { - "ParentId": "061cbfd2-2cac-6f3a-811a-ff00001828f1", - "Docket": "2284CV00879-BLS2", - "Dates": "April 16, 2025", - "Present": "Kenneth W. Salinger Justice of the Superior Court", - "County": "SUFFOLK", - "Opinion": null, - "ShortOpinion": "This lawsuit concerns insurance claims by Steven Deutsch and Joyce Greenberg arising from the destruction by fire of their large, historic residential property in Great Barrington, Massachusetts, and all personal property that was inside. The insurance policy was issued by Privilege Underwriters Reciprocal Exchange (“PURE”). The current complaint asserts claims under G.L. c. 93A alleging bad faith settlement practices in violation of G.L. c. 176D, for breach of contract, and for declaratory", - "Keywords": "DECISION AND ORDER ON PLAINTIFFS’ MOTION FOR LEAVE TO FILE A SECOND AMENDED COMPLAINT" - }, - "ActiveDate": "2025-05-12T14:00:00", - "ExpireDate": "2025-08-12T14:00:00", - "Date": "May 12, 2025" - }, - { - "Id": "161cbfd2-2cac-6f3a-811a-ff00001828f1", - "Parties": "ENFIELD BUILDERS, INC. v. THE COMMONWEALTH OF MASSACHUSETTS, DIVISION OF CAPITAL ASSET MANAGEMENT AND MAINTENANCE", - "Context": "DECISION AND ORDER ALLOWING DEFENDANT’S MOTION FOR SUMMARY JUDGMENT AND DENYING PLAINTIFF’S MOTION TO STRIKE", - "UrlName": "slip-opinion-details/enfield-builders-inc.-v.-the-commonwealth-of-massachusetts-division-of-capital-asset-management-and-maintenance", - "SectionName": "Superior Court", - "Year": "2025", - "Month": "May", - "ArchiveDate": "May 2025", - "Dates": "April 14, 2025", - "Details": { - "ParentId": "161cbfd2-2cac-6f3a-811a-ff00001828f1", - "Docket": "2184CV01075-BLS2", - "Dates": "April 14, 2025", - "Present": "Kenneth W. Salinger Justice of the Superior Court", - "County": "SUFFOLK", - "Opinion": null, - "ShortOpinion": "The Division of Capital Asset Management and Maintenance for the Commonwealth of Massachusetts (“DCAMM”) hired Enfield Builders, Inc. (“EBI”) to build a new medical and intake facility at the Worcester County Jail. Although the construction contract provided that time was of the essence, EBI did not come close to completing the project on time. DCAMM claims that EBI also committed other material breaches of its contractual obligations. DCAMM eventually terminated the contract,", - "Keywords": "DECISION AND ORDER ALLOWING DEFENDANT’S MOTION FOR SUMMARY JUDGMENT AND DENYING PLAINTIFF’S MOTION TO STRIKE" - }, - "ActiveDate": "2025-05-12T14:00:00", - "ExpireDate": "2025-08-12T14:00:00", - "Date": "May 12, 2025" - }, - { - "Id": "241cbfd2-2cac-6f3a-811a-ff00001828f1", - "Parties": "MICHAEL F. HOLICK, PH.D., M.D. v. BOSTON MEDICAL CENTER AND EVANS MEDICAL FOUNDATION, INC.", - "Context": "DECISION AND ORDER ALLOWING DEFENDANTS’ MOTION FOR SUMMARY JUDGMENT", - "UrlName": "slip-opinion-details/michael-f.-holick-ph.d.-m.d.-v.-boston-medical-center-and-evans-medical-foundation-inc", - "SectionName": "Superior Court", - "Year": "2025", - "Month": "May", - "ArchiveDate": "May 2025", - "Dates": "April 29, 2025", - "Details": { - "ParentId": "241cbfd2-2cac-6f3a-811a-ff00001828f1", - "Docket": "2184CV01454-BLS2", - "Dates": "April 29, 2025", - "Present": "Kenneth W. Salinger Justice of the Superior Court", - "County": "SUFFOLK", - "Opinion": null, - "ShortOpinion": "Dr. Michael F. Holick used to serve as Chief of Endocrinology, Diabetes, and Nutrition for Boston Medical Center (“BMC”), was Director of BMC’s Bone Health Care Clinic, and was employed through the faculty practice plan for BMC’s Department of Medicine (the Evans Medical Foundation, Inc., or “Evans”). In early 2019, BMC’s Board of Trustees voted to limit Dr. Holick’s clinical privileges to diagnosing and treating patients over the age of twelve. In early", - "Keywords": "DECISION AND ORDER ALLOWING DEFENDANTS’ MOTION FOR SUMMARY JUDGMENT" - }, - "ActiveDate": "2025-05-12T14:00:00", - "ExpireDate": "2025-08-12T14:00:00", - "Date": "May 12, 2025" - }, - { - "Id": "341cbfd2-2cac-6f3a-811a-ff00001828f1", - "Parties": "IN RE REVO MG, LLC", - "Context": "DECISION AND ORDER ALLOWING MOTION TO DISMISS AND COMPEL ARBITRATION", - "UrlName": "slip-opinion-details/in-re-revo-mg-llc", - "SectionName": "Superior Court", - "Year": "2025", - "Month": "May", - "ArchiveDate": "May 2025", - "Dates": "April 15, 2025", - "Details": { - "ParentId": "341cbfd2-2cac-6f3a-811a-ff00001828f1", - "Docket": "2484CV00307-BLS2", - "Dates": "April 15, 2025", - "Present": "Kenneth W. Salinger Justice of the Superior Court", - "County": "SUFFOLK", - "Opinion": null, - "ShortOpinion": "Stephanie Nelson and Daniel Pagano are the only two Members and only two Managers of a company known as reVo MG, LLC. They each own one-half of the company. Nelson filed a complaint to dissolve reVo. Pagano was granted leave to intervene.\nThe LLC operating agreement includes a provision stating that any “Member Dispute” shall be resolved by binding arbitration before the American Arbitration Proceeding. Pagano asks the court to dismiss this action without prejudice and compel", - "Keywords": "DECISION AND ORDER ALLOWING MOTION TO DISMISS AND COMPEL ARBITRATION" - }, - "ActiveDate": "2025-05-12T14:00:00", - "ExpireDate": "2025-08-12T14:00:00", - "Date": "May 12, 2025" - }, - { - "Id": "451cbfd2-2cac-6f3a-811a-ff00001828f1", - "Parties": "MOSHE YANAI, RACHEL YANAI, AND MICHAL INTERNATIONAL INVESTMENT LLC v. ZACK KEINAN, INDIVIDUALLY AND AS GENERAL PARTNER OF SCINTILLA HOLDINGS, LTD.; SCINTILLA HOLDINGS, LTD., AS GENERAL PARTNER OF SCINTILLA FUND, L.P.;", - "Context": "DECISION AND ORDER DENYING PLAINTIFFS’ SECOND MOTION FOR A PRELIMINARY INJUNCTION", - "UrlName": "slip-opinion-details/moshe-yanai-rachel-yanai-and-michal-international-investment-llc-v.-zack-keinan-individually-and-as-general-partner-of-scintilla-holdings-ltd.-scintilla-holdings-ltd.-as-general-partner-of-scintilla-fund-l.p-", - "SectionName": "Superior Court", - "Year": "2025", - "Month": "May", - "ArchiveDate": "May 2025", - "Dates": "April 28, 2025", - "Details": { - "ParentId": "451cbfd2-2cac-6f3a-811a-ff00001828f1", - "Docket": "2584CV00565-BLS2", - "Dates": "April 28, 2025", - "Present": "Kenneth W. Salinger Justice of the Superior Court", - "County": "SUFFOLK", - "Opinion": null, - "ShortOpinion": "Moshe and Rachel Yanai pledged their membership interests in Michal International Investment LLC (“MII”) as security for loans by Scintilla Fund, L.P. The outstanding balance is roughly $33 million. Moshe Yanai personally guaranteed repayment.\nPlaintiffs brought this suit to challenge the Fund’s plan to sell the Yanais’s MII membership interests and the Fund’s exercise of the Yanais’ voting interests to install Boaz Toshav as the new Manager of MII. The Court", - "Keywords": "DECISION AND ORDER DENYING PLAINTIFFS’ SECOND MOTION FOR A PRELIMINARY INJUNCTION" - }, - "ActiveDate": "2025-05-12T14:00:00", - "ExpireDate": "2025-08-12T14:00:00", - "Date": "May 12, 2025" - }, - { - "Id": "11afbed2-2cac-6f3a-811a-ff00001828f1", - "Parties": "IMPACT TECHNOLOGY LICENSING , LLC, AND BOSTON TECHNOLOGY CONSULTANTS GROUP, INC. (D/B/A IMPACT TECHNOLOGY DEVELOPMENT) v. BARRY-WEHMILLER COMPANIES, INC.; CARR BIOSYSTEMS, LLC; PNEUMATIC SCALE CORP.(D/B/A “PNEUMATIC SCALE ANGELUS CORP.”); \\", - "Context": "DECISION AND ORDER ON DEFENDANTS’ PARTIAL MOTION TO DISMISS", - "UrlName": "slip-opinion-details/impact-technology-licensing-llc-and-boston-technology-consultants-group-inc.-(d-b-a-impact-technology-development)-v.-barry-wehmiller-companies-inc.-carr-biosystems-llc-pneumatic-scale-corp.(d-b-a-pneumatic-scale-angelus-corp.-)", - "SectionName": "Superior Court", - "Year": "2025", - "Month": "April", - "ArchiveDate": "April 2025", - "Dates": "March 7, 2025", - "Details": { - "ParentId": "11afbed2-2cac-6f3a-811a-ff00001828f1", - "Docket": "@2484CV03350-BLS2", - "Dates": "March 7, 2025", - "Present": "Kenneth W. Salinger Justice of the Superior Court", - "County": "SUFFOLK", - "Opinion": null, - "ShortOpinion": "\nThis case concerns a Technology Transfer Agreement (the “Agreement”) that Boston Technology Consultants Group, Inc., (“BTCG”) entered into with an entity described in the contract as “PneumaticScaleAngleus Corp.,” which was actually a trade name of Pneumatic Scale Corp. The Defendants represent that Pneumatic Scale Angelus, LLC ( “PSA”) “is the only PSA entity that still exists,” implying that PSA is the legal successor to Pneumatic Scale", - "Keywords": "DECISION AND ORDER ON DEFENDANTS’ PARTIAL MOTION TO DISMISS" - }, - "ActiveDate": "2025-04-08T14:00:00", - "ExpireDate": "2025-07-08T14:00:00", - "Date": "Apr 08, 2025" - }, - { - "Id": "1fafbed2-2cac-6f3a-811a-ff00001828f1", - "Parties": "JAMES LYONS v. SECRETARY OF STATE WILLIAM GALVIN, CLERK OF THE HOUSE TIMOTHY CARROL,[1] CLERK OF THE SENATE MICHAEL HURLEY, AND ATTORNEY GENERAL ANDREA CAMPBELL, IN THEIR OFFICIAL CAPACITIES", - "Context": "DECISION AND ORDER ALLOWING MOTION TO DISMISS", - "UrlName": "slip-opinion-details/james-lyons-v.-secretary-of-state-william-galvin-clerk-of-the-house-timothy-carrol-1-clerk-of-the-senate-michael-hurley-and-attorney-general-andrea-campbell-in-their-official-capacities", - "SectionName": "Superior Court", - "Year": "2025", - "Month": "April", - "ArchiveDate": "April 2025", - "Dates": "March 31, 2025", - "Details": { - "ParentId": "1fafbed2-2cac-6f3a-811a-ff00001828f1", - "Docket": "2484CV03175-BLS2", - "Dates": "March 31, 2025", - "Present": "Kenneth W. Salinger", - "County": "SUFFOLK", - "Opinion": null, - "ShortOpinion": "Massachusetts voters recently approved a ballot initiative that authorizes and directs the State Auditor to audit the Legislature. By passing Question 1 in November 2024, voters revised the statute that addresses the auditing of accounts to add the Legislature, the official name of which is The General Court of Massachusetts,[2] to the description of entities to be audited. The statute, as amended, provides that the State Auditor “shall audit the accounts, programs, activities and functions", - "Keywords": "DECISION AND ORDER ALLOWING MOTION TO DISMISS" - }, - "ActiveDate": "2025-04-08T14:00:00", - "ExpireDate": "2025-07-08T14:00:00", - "Date": "Apr 08, 2025" - }, - { - "Id": "31afbed2-2cac-6f3a-811a-ff00001828f1", - "Parties": "MOSHE YANAI, RACHEL YANAI, AND MICHAL INTERNATIONAL INVESTMENT LLC v. ZACK KEINAN, INDIVIDUALLY AND AS GENERAL PARTNER OF SCINTILLA HOLDINGS, LTD.; SCINTILLA HOLDINGS, LTD., AS GENERAL PARTNER OF SCINTILLA FUND, L.P.; AND BOAZ TOSHAV", - "Context": "DECISION AND ORDER ON PLAINTIFFS’ MOTION FOR A PRELIMINARY INJUNCTION AND THE MOTION TO STRIKE PLAINTIFFS’ REPLY MEMORANDUM AND DECLARATIONS", - "UrlName": "slip-opinion-details/moshe-yanai-rachel-yanai-and-michal-international-investment-llc-v.-zack-keinan-individually-and-as-general-partner-of-scintilla-holdings-ltd.-scintilla-holdings-ltd.-as-general-partner-of-scintilla-fund-l.p.-and-boaz-toshav", - "SectionName": "Superior Court", - "Year": "2025", - "Month": "April", - "ArchiveDate": "April 2025", - "Dates": "March 20, 2025", - "Details": { - "ParentId": "31afbed2-2cac-6f3a-811a-ff00001828f1", - "Docket": "2584CV00565-BLS2", - "Dates": "March 20, 2025", - "Present": "Kenneth W. Salinger", - "County": "SUFFOLK", - "Opinion": null, - "ShortOpinion": "Moshe and Rachel Yanai pledged their membership interests in Michal International Investment LLC (“MII”) as security for loans by Scintilla Fund, L.P. The outstanding balance is roughly $33 million. The Fund (acting through Zack Keinan, who is the general partner of the Fund’s general partner) contends that there have been “Events of Default” that entitle it to take control of and to sell MII. It removed Moshe Yanai as Manager of MII and replaced him with Boaz Toshav. The", - "Keywords": "DECISION AND ORDER ON PLAINTIFFS’ MOTION FOR A PRELIMINARY INJUNCTION AND THE MOTION TO STRIKE PLAINTIFFS’ REPLY MEMORANDUM AND DECLARATIONS" - }, - "ActiveDate": "2025-04-08T14:00:00", - "ExpireDate": "2025-07-08T14:00:00", - "Date": "Apr 08, 2025" - } -]