From 52af1a4e63fef2810f7d8fc35c14815742d8d23d Mon Sep 17 00:00:00 2001 From: Daniel Simmons-Ritchie <37225902+SimmonsRitchie@users.noreply.github.com> Date: Wed, 8 May 2024 11:11:46 -0500 Subject: [PATCH] Fix spider: il_pollution_control --- city_scrapers/spiders/il_pollution_control.py | 248 +++++------------- tests/files/il_pollution_control.json | 2 +- tests/test_il_pollution_control.py | 84 +++--- 3 files changed, 106 insertions(+), 228 deletions(-) diff --git a/city_scrapers/spiders/il_pollution_control.py b/city_scrapers/spiders/il_pollution_control.py index 79ce52e88..a22b453ed 100644 --- a/city_scrapers/spiders/il_pollution_control.py +++ b/city_scrapers/spiders/il_pollution_control.py @@ -1,214 +1,104 @@ import json import re from datetime import datetime -from io import BytesIO, StringIO import scrapy from city_scrapers_core.constants import BOARD, NOT_CLASSIFIED from city_scrapers_core.items import Meeting from city_scrapers_core.spiders import CityScrapersSpider -from pdfminer.high_level import extract_text_to_fp -from pdfminer.layout import LAParams class IlPollutionControlSpider(CityScrapersSpider): name = "il_pollution_control" agency = "Illinois Pollution Control Board" timezone = "America/Chicago" + domain = "https://pcb.illinois.gov" start_urls = [ - "https://pcb.illinois.gov/ClerksOffice/MeetingMinutes", - "https://pcb.illinois.gov/CurrentAgendas", + domain + "/ClerksOffice/GetCalendarEvents", + ] + calendar_page = "https://pcb.illinois.gov/ClerksOffice/Calendar" + default_links = [ + { + "title": "Agendas", + "href": "https://pcb.illinois.gov/CurrentAgendas", + }, + { + "title": "Meeting minutes", + "href": "https://pcb.illinois.gov/ClerksOffice/MeetingMinutes", + }, ] - json_url = "https://pcb.illinois.gov/ClerksOffice/GetCalendarEvents" - calendar_url = "https://pcb.illinois.gov/ClerksOffice/Calendar" - - def __init__(self, *args, **kwargs): - self.minutes_map = dict() # Populated by self._parse_minutes() - self.agenda_map = dict() # Populated by self._parse_agenda() - self.relevant_years = [ - str(y) for y in range(datetime.now().year - 1, datetime.now().year + 1) - ] - super().__init__(*args, **kwargs) - - @classmethod - def from_crawler(cls, crawler, *args, **kwargs): - """Overridden `from_crawler` to connect `spider_idle` signal.""" - spider = super().from_crawler(crawler, *args, **kwargs) - crawler.signals.connect(spider.spider_idle, signal=scrapy.signals.spider_idle) - return spider - - def spider_idle(self): - """ - React to `spider_idle` signal by starting JSON parsing after _parse_minutes. - """ - self.crawler.signals.disconnect( - self.spider_idle, signal=scrapy.signals.spider_idle - ) - self.crawler.engine.crawl( - scrapy.Request(self.json_url, callback=self._parse_json), self - ) - raise scrapy.exceptions.DontCloseSpider def parse(self, response): - """ - `parse` should always `yield` Meeting items. - """ - # Gather and store links to meeting minutes: - for item in response.xpath("//iframe/@src"): - yield scrapy.Request(item.get(), callback=self._parse_minutes) - - # Gather and store link to agenda: - for agenda_url in self._parse_agenda_page(response): - yield scrapy.Request(agenda_url, callback=self._parse_agenda) - - def _parse_minutes(self, response): - """Traverse tree of URLs and populate self.minutes_map""" - for item in response.xpath("//td[@class='name']/a"): - try: - href = item.xpath("@href")[0].get() - text = item.xpath("b/text()")[0].get().strip() - if not any([(year in text) for year in self.relevant_years]): - continue # Link does not contain documents from recent years - if text[-4:] == ".pdf": - text = text[:-4] - except IndexError: - continue - - url = response.urljoin(href) - if ".pdf" not in url: - # Not a link to meeting minutes file - go a level deeper - yield scrapy.Request(url, callback=self._parse_minutes) - else: - # Dates are given in several formats: - format_strs = ["%m-%d-%Y", "%m-%d-%y", "%m/%d/%Y", "%m/%d/%y"] - dt = None - for format_str in format_strs: - try: - dt = datetime.strptime(text, format_str).date() - except ValueError: - continue - else: - break # Found a format_str that matches - stop looking - if dt is None: - continue # Could not find matching format_str - can't process link. - - self.minutes_map[dt] = url - - def _parse_agenda_page(self, response): - """Scrape link to agenda PDF""" - for item in response.xpath("//div/div/a"): - for _ in item.xpath(".//div/h5[text()='Board Meeting']"): - for href in item.xpath("./@href"): - yield href.get() - - def _parse_agenda(self, response): - """Parse PDF with agenda for date and store link + date""" - # pdf_obj = PdfFileReader(BytesIO(response.body)) - # pdf_text = pdf_obj.getPage(0).extractText().replace("\n", "") - lp = LAParams(line_margin=0.1) - out_str = StringIO() - extract_text_to_fp(BytesIO(response.body), out_str, laparams=lp) - pdf_text = out_str.getvalue().replace("\n", "") - - # Find and extract strings for month/day/year: - regex = re.compile(r"(?P[a-zA-Z]+) (?P[0-9]+), (?P[0-9]{4})") - m = regex.search(pdf_text) - - try: - month = datetime.strptime(m.group("month"), "%B").month - day = int(m.group("day")) - year = int(m.group("year")) - self.agenda_map[datetime(year, month, day).date()] = response.url - except AttributeError: # Regex failed to match. - return None - - return None - - def _parse_json(self, response): - """ - Parse JSON from /ClerksOffice/GetCalendarEvents -> Meetings - """ data = json.loads(response.text) - for item in data: - if any( - s in item["CalendarTypeDesc"].lower() - for s in ("holiday", "seminar", "hearing") - ): - continue # Not interested in this event type - - title = item["CalendarTypeDesc"].replace("CANCELLED", "").strip() + title = item.get("CalendarTypeDesc") + if not title or "holiday" in title.lower(): + continue meeting = Meeting( title=title, - description="", # Too inconsistent to parse accurately - classification=self._parse_classification(title), - start=self._parse_start(item), - end=None, - all_day=item["IsFullDay"], + description=self._parse_description(item), + classification=self._parse_classification(item), + start=self._parse_datetime(item.get("StartDateTime")), + end=self._parse_datetime(item.get("EndDateTime")), + all_day=item.get("IsFullDay"), time_notes="", location=self._parse_location(item), - links=list(), - source=self._parse_source(item, response), - ) - - meeting["links"] = self._parse_links(meeting) - meeting["status"] = self._get_status( - meeting, - text=" ".join([item["CalendarTypeDesc"], item["Description"]]).lower(), + links=self._parse_links(item), + source=self.calendar_page, ) + meeting["status"] = self._get_status(meeting, text=item.get("Cancelled")) meeting["id"] = self._get_id(meeting) yield meeting - def _parse_classification(self, title): - """Parse or generate classification from allowed options.""" - if "Board" in title: - return BOARD - else: - return NOT_CLASSIFIED + def _parse_datetime(self, date_str): + """Parse the datetime from the string format in the JSON""" + if date_str: + return datetime.strptime(date_str, "%m/%d/%Y %I:%M:%S %p") + return None - def _parse_start(self, item): - return datetime.strptime(item["StartDateTime"], "%m/%d/%Y %I:%M:%S %p") + def _parse_description(self, item): + """ + Extract and clean text from HTML description using Scrapy selectors, + removing hidden characters and non-standard whitespace. + """ + description_html = item.get("Description", "") + selector = scrapy.Selector(text=description_html) + text_lines = selector.xpath("//text()").extract() + clean_text = " ".join(line.strip() for line in text_lines if line.strip()) + # Using regex to remove non-printable characters and other unwanted symbols + clean_description = re.sub(r"[\x00-\x1f\x7f-\x9f]", "", clean_text) + return clean_description + + def _parse_classification(self, item): + if "Board" in item.get("CalendarTypeDesc", ""): + return BOARD + return NOT_CLASSIFIED def _parse_location(self, item): - """Parse or generate location.""" - text = " ".join([item["Description"], item["Location"]]).lower() - if "thompson" in text: + if item.get("Location"): return { - "address": "James R. Thompson Center - 100 W. Randolph St. Suite 11-500, Chicago, IL 60601", # noqa - "name": "Chicago IPCB Office", - } - elif "springfield" in text or "llinois pollution control board" in text: - return { - "address": "1021 N. Grand Ave. E. - Room 1244 N, Springfield, IL 62702", - "name": "Springfield IPCB Office", - } - elif "sangamo room" in text: - return { - "address": "1021 N. Grand Ave. E. - Sangamo Room, Springfield, IL 62702", # noqa - "name": "Illinois EPA", - } - else: - return { - "address": "", "name": "", + "address": item["Location"].strip(), } - - def _parse_links(self, meeting): - """Associate Meeting objects with previously-scraped links""" - links = list() - key = meeting["start"].date() - if key in self.minutes_map: - links.append({"href": self.minutes_map[key], "title": "Minutes"}) - if key in self.agenda_map: - links.append({"href": self.agenda_map[key], "title": "Agenda"}) - - return links - - def _parse_source(self, item, response): - """Parse or generate source.""" - rel_url = scrapy.Selector(text=item["Description"]).xpath(".//a/@href").get() - if rel_url: - return response.urljoin(rel_url) - else: - return self.calendar_url + return {"name": "No location provided", "address": ""} + + def _parse_links(self, item): + """Parse links from description.""" + description_html = item.get("Description") + selector = scrapy.Selector(text=description_html) + a_tags = selector.css("a") + links = [] + for a_tag in a_tags: + # check if href is relative or absolute and prefix domain if needed + href = a_tag.attrib.get("href") + href_clean = href if href.startswith("http") else self.domain + href + title = a_tag.attrib.get("title") + clean_title = title if title else "Related document" + link = { + "href": href_clean, + "title": clean_title, + } + links.append(link) + final_links = self.default_links + links + return final_links diff --git a/tests/files/il_pollution_control.json b/tests/files/il_pollution_control.json index 48dba7b08..c140f9143 100644 --- a/tests/files/il_pollution_control.json +++ b/tests/files/il_pollution_control.json @@ -1 +1 @@ -[{"CalendarId":830,"StartDateTime":"1/1/2019 12:00:00 AM","EndDateTime":"","FullName":"Don Brown","CalendarTypeDesc":"Holiday","Description":"\u003cdiv class=\u0027eventHoliday eventDetails\u0027\u003e\r\nNew Years Day - Board Closed\u003cbr /\u003e\r\n\u003c/div\u003e\r\n","Location":"","Cancelled":"","VC":"N","CaseNumber":"N/A","CaseId":0,"IsFullDay":false,"CalendarDescription":null},{"CalendarId":831,"StartDateTime":"1/21/2019 12:00:00 AM","EndDateTime":"1/21/2019 12:00:00 AM","FullName":"Don Brown","CalendarTypeDesc":"Holiday","Description":"\u003cdiv class=\u0027eventHoliday eventDetails\u0027\u003e\r\nMartin Luther King Day - Board Closed - Board Closed\u003cbr /\u003e\r\n\u003c/div\u003e\r\n","Location":"","Cancelled":"","VC":"N","CaseNumber":"N/A","CaseId":0,"IsFullDay":false,"CalendarDescription":null},{"CalendarId":843,"StartDateTime":"10/4/2018 12:00:00 PM","EndDateTime":"10/4/2018 12:00:00 PM","FullName":"Don Brown","CalendarTypeDesc":"Brown Bag Seminar","Description":"Event Type: Brown Bag Seminar\r\n","Location":"IPCB Office \n1021 N Grand Ave E - Room 1244 N (First Floor)\nSpringfield, Illinois\n- and -\nIPCB Office\nJames R. Thompson Center\n100 W Randolph - Room 11-512\nChicago, Illinois","Cancelled":"","VC":"V","CaseNumber":"N/A","CaseId":0,"IsFullDay":false,"CalendarDescription":null},{"CalendarId":856,"StartDateTime":"5/23/2019 11:00:00 AM","EndDateTime":"5/23/2019 11:00:00 AM","FullName":"Don Brown","CalendarTypeDesc":"Board Meeting","Description":"\u003cdiv class=\u0027eventBoardMeeting eventDetails\u0027\u003e\r\n\u003cdiv class=\u0027eventHeading\u0027\u003eBoard Meeting\u003c/div\u003e\r\n\u003cdiv class=\u0027eventLocation\u0027\u003eIPCB Office \n1021 N Grand Ave E - Room 1244 N (First Floor)\nSpringfield, Illinois\n- and -\nIPCB Office\nJames R. Thompson Center\n100 W Randolph - Room 11-512\nChicago, Illinois\u003c/div\u003e\r\n\u003c/div\u003e\r\n","Location":"IPCB Office \n1021 N Grand Ave E - Room 1244 N (First Floor)\nSpringfield, Illinois\n- and -\nIPCB Office\nJames R. Thompson Center\n100 W Randolph - Room 11-512\nChicago, Illinois","Cancelled":"","VC":"V","CaseNumber":"N/A","CaseId":0,"IsFullDay":false,"CalendarDescription":null},{"CalendarId":857,"StartDateTime":"6/6/2019 11:00:00 AM","EndDateTime":"6/6/2019 11:00:00 AM","FullName":"Don Brown","CalendarTypeDesc":"Board Meeting","Description":"\u003cdiv class=\u0027eventBoardMeeting eventDetails\u0027\u003e\r\n\u003cdiv class=\u0027eventHeading\u0027\u003eBoard Meeting\u003c/div\u003e\r\n\u003cdiv class=\u0027eventLocation\u0027\u003eIPCB Office \n1021 N Grand Ave E - Room 1244 N (First Floor)\nSpringfield, Illinois\n- and -\nIPCB Office\nJames R. Thompson Center\n100 W Randolph - Room 11-512\nChicago, Illinois\u003c/div\u003e\r\n\u003c/div\u003e\r\n","Location":"IPCB Office \n1021 N Grand Ave E - Room 1244 N (First Floor)\nSpringfield, Illinois\n- and -\nIPCB Office\nJames R. Thompson Center\n100 W Randolph - Room 11-512\nChicago, Illinois","Cancelled":"","VC":"V","CaseNumber":"N/A","CaseId":0,"IsFullDay":false,"CalendarDescription":null},{"CalendarId":845,"StartDateTime":"12/5/2018 12:00:00 PM","EndDateTime":"12/5/2018 12:00:00 PM","FullName":"Don Brown","CalendarTypeDesc":"Brown Bag Seminar","Description":"Event Type: Brown Bag Seminar\r\n","Location":"IPCB Office \n1021 N Grand Ave E - Room 1244 N (First Floor)\nSpringfield, Illinois\n- and -\nIPCB Office\nJames R. Thompson Center\n100 W Randolph - Room 11-512\nChicago, Illinois","Cancelled":"","VC":"V","CaseNumber":"N/A","CaseId":0,"IsFullDay":false,"CalendarDescription":null},{"CalendarId":847,"StartDateTime":"1/17/2019 11:00:00 AM","EndDateTime":"1/17/2019 11:00:00 AM","FullName":"Don Brown","CalendarTypeDesc":"Board Meeting","Description":"\u003cdiv class=\u0027eventBoardMeeting eventDetails\u0027\u003e\r\n\u003cdiv class=\u0027eventHeading\u0027\u003eBoard Meeting\u003c/div\u003e\r\n\u003cdiv class=\u0027eventLocation\u0027\u003eIPCB Office \n1021 N Grand Ave E - Room 1244 N (First Floor)\nSpringfield, Illinois\n- and -\nIPCB Office\nJames R. Thompson Center\n100 W Randolph - Room 11-512\nChicago, Illinois\u003c/div\u003e\r\n\u003c/div\u003e\r\n","Location":"IPCB Office \n1021 N Grand Ave E - Room 1244 N (First Floor)\nSpringfield, Illinois\n- and -\nIPCB Office\nJames R. Thompson Center\n100 W Randolph - Room 11-512\nChicago, Illinois","Cancelled":"","VC":"V","CaseNumber":"N/A","CaseId":0,"IsFullDay":false,"CalendarDescription":null},{"CalendarId":848,"StartDateTime":"1/31/2019 11:00:00 AM","EndDateTime":"1/31/2019 11:00:00 AM","FullName":"Don Brown","CalendarTypeDesc":"Board Meeting","Description":"\u003cdiv class=\u0027eventBoardMeeting eventDetails\u0027\u003e\r\n\u003cdiv class=\u0027eventHeading\u0027\u003eBoard Meeting\u003c/div\u003e\r\n\u003cdiv class=\u0027eventLocation\u0027\u003eIPCB Office \n1021 N Grand Ave E - Room 1244 N (First Floor)\nSpringfield, Illinois\n- and -\nIPCB Office\nJames R. Thompson Center\n100 W Randolph - Room 11-512\nChicago, Illinois\u003c/div\u003e\r\n\u003c/div\u003e\r\n","Location":"IPCB Office \n1021 N Grand Ave E - Room 1244 N (First Floor)\nSpringfield, Illinois\n- and -\nIPCB Office\nJames R. Thompson Center\n100 W Randolph - Room 11-512\nChicago, Illinois","Cancelled":"","VC":"V","CaseNumber":"N/A","CaseId":0,"IsFullDay":false,"CalendarDescription":null},{"CalendarId":849,"StartDateTime":"2/14/2019 11:00:00 AM","EndDateTime":"2/14/2019 11:00:00 AM","FullName":"Don Brown","CalendarTypeDesc":"Board Meeting","Description":"\u003cdiv class=\u0027eventBoardMeeting eventDetails\u0027\u003e\r\n\u003cdiv class=\u0027eventHeading\u0027\u003eBoard Meeting\u003c/div\u003e\r\n\u003cdiv class=\u0027eventLocation\u0027\u003eIPCB Office \n1021 N Grand Ave E - Room 1244 N (First Floor)\nSpringfield, Illinois\n- and -\nIPCB Office\nJames R. Thompson Center\n100 W Randolph - Room 11-512\nChicago, Illinois\u003c/div\u003e\r\n\u003c/div\u003e\r\n","Location":"IPCB Office \n1021 N Grand Ave E - Room 1244 N (First Floor)\nSpringfield, Illinois\n- and -\nIPCB Office\nJames R. Thompson Center\n100 W Randolph - Room 11-512\nChicago, Illinois","Cancelled":"","VC":"V","CaseNumber":"N/A","CaseId":0,"IsFullDay":false,"CalendarDescription":null},{"CalendarId":850,"StartDateTime":"2/28/2019 11:00:00 AM","EndDateTime":"2/28/2019 11:00:00 AM","FullName":"Don Brown","CalendarTypeDesc":"Board Meeting","Description":"\u003cdiv class=\u0027eventBoardMeeting eventDetails\u0027\u003e\r\n\u003cdiv class=\u0027eventHeading\u0027\u003eBoard Meeting\u003c/div\u003e\r\n\u003cdiv class=\u0027eventLocation\u0027\u003eIPCB Office \n1021 N Grand Ave E - Room 1244 N (First Floor)\nSpringfield, Illinois\n- and -\nIPCB Office\nJames R. Thompson Center\n100 W Randolph - Room 11-512\nChicago, Illinois\u003c/div\u003e\r\n\u003c/div\u003e\r\n","Location":"IPCB Office \n1021 N Grand Ave E - Room 1244 N (First Floor)\nSpringfield, Illinois\n- and -\nIPCB Office\nJames R. Thompson Center\n100 W Randolph - Room 11-512\nChicago, Illinois","Cancelled":"","VC":"V","CaseNumber":"N/A","CaseId":0,"IsFullDay":false,"CalendarDescription":null},{"CalendarId":851,"StartDateTime":"3/14/2019 11:00:00 AM","EndDateTime":"3/14/2019 11:00:00 AM","FullName":"Don Brown","CalendarTypeDesc":"Board Meeting","Description":"\u003cdiv class=\u0027eventBoardMeeting eventDetails\u0027\u003e\r\n\u003cdiv class=\u0027eventHeading\u0027\u003eBoard Meeting\u003c/div\u003e\r\n\u003cdiv class=\u0027eventLocation\u0027\u003eIPCB Office \n1021 N Grand Ave E - Room 1244 N (First Floor)\nSpringfield, Illinois\n- and -\nIPCB Office\nJames R. Thompson Center\n100 W Randolph - Room 11-512\nChicago, Illinois\u003c/div\u003e\r\n\u003c/div\u003e\r\n","Location":"IPCB Office \n1021 N Grand Ave E - Room 1244 N (First Floor)\nSpringfield, Illinois\n- and -\nIPCB Office\nJames R. Thompson Center\n100 W Randolph - Room 11-512\nChicago, Illinois","Cancelled":"","VC":"V","CaseNumber":"N/A","CaseId":0,"IsFullDay":false,"CalendarDescription":null},{"CalendarId":858,"StartDateTime":"6/20/2019 11:00:00 AM","EndDateTime":"6/20/2019 11:00:00 AM","FullName":"Don Brown","CalendarTypeDesc":"Board Meeting","Description":"\u003cdiv class=\u0027eventBoardMeeting eventDetails\u0027\u003e\r\n\u003cdiv class=\u0027eventHeading\u0027\u003eBoard Meeting\u003c/div\u003e\r\n\u003cdiv class=\u0027eventLocation\u0027\u003eIPCB Office \n1021 N Grand Ave E - Room 1244 N (First Floor)\nSpringfield, Illinois\n- and -\nIPCB Office\nJames R. Thompson Center\n100 W Randolph - Room 11-512\nChicago, Illinois\u003c/div\u003e\r\n\u003c/div\u003e\r\n","Location":"IPCB Office \n1021 N Grand Ave E - Room 1244 N (First Floor)\nSpringfield, Illinois\n- and -\nIPCB Office\nJames R. Thompson Center\n100 W Randolph - Room 11-512\nChicago, Illinois","Cancelled":"","VC":"V","CaseNumber":"N/A","CaseId":0,"IsFullDay":false,"CalendarDescription":null},{"CalendarId":859,"StartDateTime":"7/11/2019 11:00:00 AM","EndDateTime":"7/11/2019 11:00:00 AM","FullName":"Don Brown","CalendarTypeDesc":"Board Meeting","Description":"\u003cdiv class=\u0027eventBoardMeeting eventDetails\u0027\u003e\r\n\u003cdiv class=\u0027eventHeading\u0027\u003eBoard Meeting\u003c/div\u003e\r\n\u003cdiv class=\u0027eventLocation\u0027\u003eIPCB Office \n1021 N Grand Ave E - Room 1244 N (First Floor)\nSpringfield, Illinois\n- and -\nIPCB Office\nJames R. Thompson Center\n100 W Randolph - Room 11-512\nChicago, Illinois\u003c/div\u003e\r\n\u003c/div\u003e\r\n","Location":"IPCB Office \n1021 N Grand Ave E - Room 1244 N (First Floor)\nSpringfield, Illinois\n- and -\nIPCB Office\nJames R. Thompson Center\n100 W Randolph - Room 11-512\nChicago, Illinois","Cancelled":"","VC":"V","CaseNumber":"N/A","CaseId":0,"IsFullDay":false,"CalendarDescription":null},{"CalendarId":860,"StartDateTime":"7/25/2019 11:00:00 AM","EndDateTime":"7/25/2019 11:00:00 AM","FullName":"Don Brown","CalendarTypeDesc":"Board Meeting","Description":"\u003cdiv class=\u0027eventBoardMeeting eventDetails\u0027\u003e\r\n\u003cdiv class=\u0027eventHeading\u0027\u003eBoard Meeting\u003c/div\u003e\r\n\u003cdiv class=\u0027eventLocation\u0027\u003eIPCB Office \n1021 N Grand Ave E - Room 1244 N (First Floor)\nSpringfield, Illinois\n- and -\nIPCB Office\nJames R. Thompson Center\n100 W Randolph - Room 11-512\nChicago, Illinois\u003c/div\u003e\r\n\u003c/div\u003e\r\n","Location":"IPCB Office \n1021 N Grand Ave E - Room 1244 N (First Floor)\nSpringfield, Illinois\n- and -\nIPCB Office\nJames R. Thompson Center\n100 W Randolph - Room 11-512\nChicago, Illinois","Cancelled":"","VC":"V","CaseNumber":"N/A","CaseId":0,"IsFullDay":false,"CalendarDescription":null},{"CalendarId":861,"StartDateTime":"8/8/2019 11:00:00 AM","EndDateTime":"8/8/2019 11:00:00 AM","FullName":"Don Brown","CalendarTypeDesc":"CANCELLED Board Meeting","Description":"Event Type: CANCELLED Board Meeting\r\n","Location":"IPCB Office \n1021 N Grand Ave E - Room 1244 N (First Floor)\nSpringfield, Illinois\n- and -\nIPCB Office\nJames R. Thompson Center\n100 W Randolph - Room 11-512\nChicago, Illinois","Cancelled":"","VC":"V","CaseNumber":"N/A","CaseId":0,"IsFullDay":false,"CalendarDescription":null},{"CalendarId":862,"StartDateTime":"8/22/2019 11:00:00 AM","EndDateTime":"8/22/2019 11:00:00 AM","FullName":"Don Brown","CalendarTypeDesc":"Board Meeting","Description":"\u003cdiv class=\u0027eventBoardMeeting eventDetails\u0027\u003e\r\n\u003cdiv class=\u0027eventHeading\u0027\u003eBoard Meeting\u003c/div\u003e\r\n\u003cdiv class=\u0027eventLocation\u0027\u003eIPCB Office \n1021 N Grand Ave E - Room 1244 N (First Floor)\nSpringfield, Illinois\n- and -\nIPCB Office\nJames R. Thompson Center\n100 W Randolph - Room 11-512\nChicago, Illinois\u003c/div\u003e\r\n\u003c/div\u003e\r\n","Location":"IPCB Office \n1021 N Grand Ave E - Room 1244 N (First Floor)\nSpringfield, Illinois\n- and -\nIPCB Office\nJames R. Thompson Center\n100 W Randolph - Room 11-512\nChicago, Illinois","Cancelled":"","VC":"V","CaseNumber":"N/A","CaseId":0,"IsFullDay":false,"CalendarDescription":null},{"CalendarId":863,"StartDateTime":"9/5/2019 11:00:00 AM","EndDateTime":"9/5/2019 11:00:00 AM","FullName":"Don Brown","CalendarTypeDesc":"Board Meeting","Description":"\u003cdiv class=\u0027eventBoardMeeting eventDetails\u0027\u003e\r\n\u003cdiv class=\u0027eventHeading\u0027\u003eBoard Meeting\u003c/div\u003e\r\n\u003cdiv class=\u0027eventLocation\u0027\u003eIPCB Office \n1021 N Grand Ave E - Room 1244 N (First Floor)\nSpringfield, Illinois\n- and -\nIPCB Office\nJames R. Thompson Center\n100 W Randolph - Room 11-512\nChicago, Illinois\u003c/div\u003e\r\n\u003c/div\u003e\r\n","Location":"IPCB Office \n1021 N Grand Ave E - Room 1244 N (First Floor)\nSpringfield, Illinois\n- and -\nIPCB Office\nJames R. Thompson Center\n100 W Randolph - Room 11-512\nChicago, Illinois","Cancelled":"","VC":"V","CaseNumber":"N/A","CaseId":0,"IsFullDay":false,"CalendarDescription":null},{"CalendarId":864,"StartDateTime":"9/19/2019 11:00:00 AM","EndDateTime":"9/19/2019 11:00:00 AM","FullName":"Don Brown","CalendarTypeDesc":"Board Meeting","Description":"\u003cdiv class=\u0027eventBoardMeeting eventDetails\u0027\u003e\r\n\u003cdiv class=\u0027eventHeading\u0027\u003eBoard Meeting\u003c/div\u003e\r\n\u003cdiv class=\u0027eventLocation\u0027\u003eIPCB Office \n1021 N Grand Ave E - Room 1244 N (First Floor)\nSpringfield, Illinois\n- and -\nIPCB Office\nJames R. Thompson Center\n100 W Randolph - Room 11-512\nChicago, Illinois\u003c/div\u003e\r\n\u003c/div\u003e\r\n","Location":"IPCB Office \n1021 N Grand Ave E - Room 1244 N (First Floor)\nSpringfield, Illinois\n- and -\nIPCB Office\nJames R. Thompson Center\n100 W Randolph - Room 11-512\nChicago, Illinois","Cancelled":"","VC":"V","CaseNumber":"N/A","CaseId":0,"IsFullDay":false,"CalendarDescription":null},{"CalendarId":865,"StartDateTime":"10/3/2019 11:00:00 AM","EndDateTime":"10/3/2019 11:00:00 AM","FullName":"Don Brown","CalendarTypeDesc":"Board Meeting","Description":"\u003cdiv class=\u0027eventBoardMeeting eventDetails\u0027\u003e\r\n\u003cdiv class=\u0027eventHeading\u0027\u003eBoard Meeting\u003c/div\u003e\r\n\u003cdiv class=\u0027eventLocation\u0027\u003eIPCB Office \n1021 N Grand Ave E - Room 1244 N (First Floor)\nSpringfield, Illinois\n- and -\nIPCB Office\nJames R. Thompson Center\n100 W Randolph - Room 11-512\nChicago, Illinois\u003c/div\u003e\r\n\u003c/div\u003e\r\n","Location":"IPCB Office \n1021 N Grand Ave E - Room 1244 N (First Floor)\nSpringfield, Illinois\n- and -\nIPCB Office\nJames R. Thompson Center\n100 W Randolph - Room 11-512\nChicago, Illinois","Cancelled":"","VC":"V","CaseNumber":"N/A","CaseId":0,"IsFullDay":false,"CalendarDescription":null},{"CalendarId":866,"StartDateTime":"10/17/2019 11:00:00 AM","EndDateTime":"10/17/2019 11:00:00 AM","FullName":"Don Brown","CalendarTypeDesc":"Board Meeting","Description":"\u003cdiv class=\u0027eventBoardMeeting eventDetails\u0027\u003e\r\n\u003cdiv class=\u0027eventHeading\u0027\u003eBoard Meeting\u003c/div\u003e\r\n\u003cdiv class=\u0027eventLocation\u0027\u003eIPCB Office \n1021 N Grand Ave E - Room 1244 N (First Floor)\nSpringfield, Illinois\n- and -\nIPCB Office\nJames R. Thompson Center\n100 W Randolph - Room 11-512\nChicago, Illinois\u003c/div\u003e\r\n\u003c/div\u003e\r\n","Location":"IPCB Office \n1021 N Grand Ave E - Room 1244 N (First Floor)\nSpringfield, Illinois\n- and -\nIPCB Office\nJames R. Thompson Center\n100 W Randolph - Room 11-512\nChicago, Illinois","Cancelled":"","VC":"V","CaseNumber":"N/A","CaseId":0,"IsFullDay":false,"CalendarDescription":null},{"CalendarId":867,"StartDateTime":"11/7/2019 11:00:00 AM","EndDateTime":"11/7/2019 11:00:00 AM","FullName":"Don Brown","CalendarTypeDesc":"Board Meeting","Description":"\u003cdiv class=\u0027eventBoardMeeting eventDetails\u0027\u003e\r\n\u003cdiv class=\u0027eventHeading\u0027\u003eBoard Meeting\u003c/div\u003e\r\n\u003cdiv class=\u0027eventLocation\u0027\u003eIPCB Office \n1021 N Grand Ave E - Room 1244 N (First Floor)\nSpringfield, Illinois\n- and -\nIPCB Office\nJames R. Thompson Center\n100 W Randolph - Room 11-512\nChicago, Illinois\u003c/div\u003e\r\n\u003c/div\u003e\r\n","Location":"IPCB Office \n1021 N Grand Ave E - Room 1244 N (First Floor)\nSpringfield, Illinois\n- and -\nIPCB Office\nJames R. Thompson Center\n100 W Randolph - Room 11-512\nChicago, Illinois","Cancelled":"","VC":"V","CaseNumber":"N/A","CaseId":0,"IsFullDay":false,"CalendarDescription":null},{"CalendarId":868,"StartDateTime":"11/21/2019 11:00:00 AM","EndDateTime":"11/21/2019 11:00:00 AM","FullName":"Don Brown","CalendarTypeDesc":"Board Meeting","Description":"\u003cdiv class=\u0027eventBoardMeeting eventDetails\u0027\u003e\r\n\u003cdiv class=\u0027eventHeading\u0027\u003eBoard Meeting\u003c/div\u003e\r\n\u003cdiv class=\u0027eventLocation\u0027\u003eIPCB Office \n1021 N Grand Ave E - Room 1244 N (First Floor)\nSpringfield, Illinois\n- and -\nIPCB Office\nJames R. Thompson Center\n100 W Randolph - Room 11-512\nChicago, Illinois\u003c/div\u003e\r\n\u003c/div\u003e\r\n","Location":"IPCB Office \n1021 N Grand Ave E - Room 1244 N (First Floor)\nSpringfield, Illinois\n- and -\nIPCB Office\nJames R. Thompson Center\n100 W Randolph - Room 11-512\nChicago, Illinois","Cancelled":"","VC":"V","CaseNumber":"N/A","CaseId":0,"IsFullDay":false,"CalendarDescription":null},{"CalendarId":869,"StartDateTime":"12/5/2019 11:00:00 AM","EndDateTime":"12/5/2019 11:00:00 AM","FullName":"Don Brown","CalendarTypeDesc":"Board Meeting","Description":"\u003cdiv class=\u0027eventBoardMeeting eventDetails\u0027\u003e\r\n\u003cdiv class=\u0027eventHeading\u0027\u003eBoard Meeting\u003c/div\u003e\r\n\u003cdiv class=\u0027eventLocation\u0027\u003eIPCB Office \n1021 N Grand Ave E - Room 1244 N (First Floor)\nSpringfield, Illinois\n- and -\nIPCB Office\nJames R. Thompson Center\n100 W Randolph - Room 11-512\nChicago, Illinois\u003c/div\u003e\r\n\u003c/div\u003e\r\n","Location":"IPCB Office \n1021 N Grand Ave E - Room 1244 N (First Floor)\nSpringfield, Illinois\n- and -\nIPCB Office\nJames R. Thompson Center\n100 W Randolph - Room 11-512\nChicago, Illinois","Cancelled":"","VC":"V","CaseNumber":"N/A","CaseId":0,"IsFullDay":false,"CalendarDescription":null},{"CalendarId":870,"StartDateTime":"12/19/2019 11:00:00 AM","EndDateTime":"12/19/2019 11:00:00 AM","FullName":"Don Brown","CalendarTypeDesc":"Board Meeting","Description":"\u003cdiv class=\u0027eventBoardMeeting eventDetails\u0027\u003e\r\n\u003cdiv class=\u0027eventHeading\u0027\u003eBoard Meeting\u003c/div\u003e\r\n\u003cdiv class=\u0027eventLocation\u0027\u003eIPCB Office \n1021 N Grand Ave E - Room 1244 N (First Floor)\nSpringfield, Illinois\n- and -\nIPCB Office\nJames R. Thompson Center\n100 W Randolph - Room 11-512\nChicago, Illinois\u003c/div\u003e\r\n\u003c/div\u003e\r\n","Location":"IPCB Office \n1021 N Grand Ave E - Room 1244 N (First Floor)\nSpringfield, Illinois\n- and -\nIPCB Office\nJames R. Thompson Center\n100 W Randolph - Room 11-512\nChicago, Illinois","Cancelled":"","VC":"V","CaseNumber":"N/A","CaseId":0,"IsFullDay":false,"CalendarDescription":null},{"CalendarId":871,"StartDateTime":"2/14/2019 12:00:00 PM","EndDateTime":"2/14/2019 12:00:00 PM","FullName":"Don Brown","CalendarTypeDesc":"Brown Bag Seminar","Description":"Event Type: Brown Bag Seminar\r\n","Location":"IPCB Office \n1021 N Grand Ave E - Room 1244 N (First Floor)\nSpringfield, Illinois\n- and -\nIPCB Office\nJames R. Thompson Center\n100 W Randolph - Room 11-512\nChicago, Illinois","Cancelled":"","VC":"V","CaseNumber":"N/A","CaseId":0,"IsFullDay":false,"CalendarDescription":null},{"CalendarId":872,"StartDateTime":"4/11/2019 12:00:00 PM","EndDateTime":"4/11/2019 12:00:00 PM","FullName":"Don Brown","CalendarTypeDesc":"Brown Bag Seminar","Description":"Event Type: Brown Bag Seminar\r\n","Location":"IPCB Office \n1021 N Grand Ave E - Room 1244 N (First Floor)\nSpringfield, Illinois\n- and -\nIPCB Office\nJames R. Thompson Center\n100 W Randolph - Room 11-512\nChicago, Illinois","Cancelled":"","VC":"V","CaseNumber":"N/A","CaseId":0,"IsFullDay":false,"CalendarDescription":null},{"CalendarId":873,"StartDateTime":"5/27/2019 12:00:00 AM","EndDateTime":"5/27/2019 12:00:00 AM","FullName":"Don Brown","CalendarTypeDesc":"Holiday","Description":"\u003cdiv class=\u0027eventHoliday eventDetails\u0027\u003e\r\nMemorial Day - Board Closed\u003cbr /\u003e\r\n\u003c/div\u003e\r\n","Location":"","Cancelled":"","VC":"N","CaseNumber":"N/A","CaseId":0,"IsFullDay":false,"CalendarDescription":null},{"CalendarId":874,"StartDateTime":"7/4/2019 12:00:00 AM","EndDateTime":"7/4/2019 12:00:00 AM","FullName":"Don Brown","CalendarTypeDesc":"Holiday","Description":"\u003cdiv class=\u0027eventHoliday eventDetails\u0027\u003e\r\nIndependence Day - Board Closed\u003cbr /\u003e\r\n\u003c/div\u003e\r\n","Location":"","Cancelled":"","VC":"N","CaseNumber":"N/A","CaseId":0,"IsFullDay":false,"CalendarDescription":null},{"CalendarId":875,"StartDateTime":"9/2/2019 12:00:00 AM","EndDateTime":"9/2/2019 12:00:00 AM","FullName":"Don Brown","CalendarTypeDesc":"Holiday","Description":"\u003cdiv class=\u0027eventHoliday eventDetails\u0027\u003e\r\nLabor - Board Closed\u003cbr /\u003e\r\n\u003c/div\u003e\r\n","Location":"","Cancelled":"","VC":"N","CaseNumber":"N/A","CaseId":0,"IsFullDay":false,"CalendarDescription":null},{"CalendarId":876,"StartDateTime":"10/14/2019 12:00:00 AM","EndDateTime":"10/14/2019 12:00:00 AM","FullName":"Don Brown","CalendarTypeDesc":"Holiday","Description":"\u003cdiv class=\u0027eventHoliday eventDetails\u0027\u003e\r\nColumbus Day - Board Closed\u003cbr /\u003e\r\n\u003c/div\u003e\r\n","Location":"","Cancelled":"","VC":"N","CaseNumber":"N/A","CaseId":0,"IsFullDay":false,"CalendarDescription":null},{"CalendarId":877,"StartDateTime":"11/11/2019 12:00:00 AM","EndDateTime":"11/11/2019 12:00:00 AM","FullName":"Don Brown","CalendarTypeDesc":"Holiday","Description":"\u003cdiv class=\u0027eventHoliday eventDetails\u0027\u003e\r\nVeterans\u0027 Day - Board Closed\u003cbr /\u003e\r\n\u003c/div\u003e\r\n","Location":"","Cancelled":"","VC":"N","CaseNumber":"N/A","CaseId":0,"IsFullDay":false,"CalendarDescription":null},{"CalendarId":878,"StartDateTime":"11/28/2019 12:00:00 AM","EndDateTime":"11/28/2019 12:00:00 AM","FullName":"Don Brown","CalendarTypeDesc":"Holiday","Description":"\u003cdiv class=\u0027eventHoliday eventDetails\u0027\u003e\r\nThanksgiving - Board Closed\u003cbr /\u003e\r\n\u003c/div\u003e\r\n","Location":"","Cancelled":"","VC":"N","CaseNumber":"N/A","CaseId":0,"IsFullDay":false,"CalendarDescription":null},{"CalendarId":879,"StartDateTime":"11/29/2019 12:00:00 AM","EndDateTime":"11/29/2019 12:00:00 AM","FullName":"Don Brown","CalendarTypeDesc":"Holiday","Description":"\u003cdiv class=\u0027eventHoliday eventDetails\u0027\u003e\r\nThanksgiving - Board Closed\u003cbr /\u003e\r\n\u003c/div\u003e\r\n","Location":"","Cancelled":"","VC":"N","CaseNumber":"N/A","CaseId":0,"IsFullDay":false,"CalendarDescription":null},{"CalendarId":794,"StartDateTime":"10/4/2018 11:00:00 AM","EndDateTime":"","FullName":"Don Brown","CalendarTypeDesc":"Board Meeting","Description":"\u003cdiv class=\u0027eventBoardMeeting eventDetails\u0027\u003e\r\n\u003cdiv class=\u0027eventHeading\u0027\u003eBoard Meeting\u003c/div\u003e\r\n\u003cdiv class=\u0027eventLocation\u0027\u003eIPCB Office\u003cBR\u003e1021 N Grand Ave E - Room 1244 N (First Floor)\u003cBR\u003eSpringfield, Illinois\u003cBR\u003e\u003cB\u003e- and -\u003c/B\u003e\u003cBR\u003eIPCB Office\u003cBR\u003eJames R. Thompson Center\u003cBR\u003e100 W Randolph - Room 11-512\u003cBR\u003eChicago, Illinois\u003c/div\u003e\r\n\u003c/div\u003e\r\n","Location":"IPCB Office\u003cBR\u003e1021 N Grand Ave E - Room 1244 N (First Floor)\u003cBR\u003eSpringfield, Illinois\u003cBR\u003e\u003cB\u003e- and -\u003c/B\u003e\u003cBR\u003eIPCB Office\u003cBR\u003eJames R. Thompson Center\u003cBR\u003e100 W Randolph - Room 11-512\u003cBR\u003eChicago, Illinois","Cancelled":"","VC":"V","CaseNumber":"N/A","CaseId":0,"IsFullDay":false,"CalendarDescription":null},{"CalendarId":795,"StartDateTime":"10/18/2018 11:00:00 AM","EndDateTime":"","FullName":"Don Brown","CalendarTypeDesc":"Board Meeting","Description":"\u003cdiv class=\u0027eventBoardMeeting eventDetails\u0027\u003e\r\n\u003cdiv class=\u0027eventHeading\u0027\u003eBoard Meeting\u003c/div\u003e\r\n\u003cdiv class=\u0027eventLocation\u0027\u003eIPCB Office\u003cBR\u003e1021 N Grand Ave E - Room 1244 N (First Floor)\u003cBR\u003eSpringfield, Illinois\u003cBR\u003e\u003cB\u003e- and -\u003c/B\u003e\u003cBR\u003eIPCB Office\u003cBR\u003eJames R. Thompson Center\u003cBR\u003e100 W Randolph - Room 11-512\u003cBR\u003eChicago, Illinois\u003c/div\u003e\r\n\u003c/div\u003e\r\n","Location":"IPCB Office\u003cBR\u003e1021 N Grand Ave E - Room 1244 N (First Floor)\u003cBR\u003eSpringfield, Illinois\u003cBR\u003e\u003cB\u003e- and -\u003c/B\u003e\u003cBR\u003eIPCB Office\u003cBR\u003eJames R. Thompson Center\u003cBR\u003e100 W Randolph - Room 11-512\u003cBR\u003eChicago, Illinois","Cancelled":"","VC":"V","CaseNumber":"N/A","CaseId":0,"IsFullDay":false,"CalendarDescription":null},{"CalendarId":796,"StartDateTime":"11/1/2018 11:00:00 AM","EndDateTime":"","FullName":"Don Brown","CalendarTypeDesc":"Board Meeting","Description":"\u003cdiv class=\u0027eventBoardMeeting eventDetails\u0027\u003e\r\n\u003cdiv class=\u0027eventHeading\u0027\u003eBoard Meeting\u003c/div\u003e\r\n\u003cdiv class=\u0027eventLocation\u0027\u003eIPCB Office\u003cBR\u003e1021 N Grand Ave E - Room 1244 N (First Floor)\u003cBR\u003eSpringfield, Illinois\u003cBR\u003e\u003cB\u003e- and -\u003c/B\u003e\u003cBR\u003eIPCB Office\u003cBR\u003eJames R. Thompson Center\u003cBR\u003e100 W Randolph - Room 11-512\u003cBR\u003eChicago, Illinois\u003c/div\u003e\r\n\u003c/div\u003e\r\n","Location":"IPCB Office\u003cBR\u003e1021 N Grand Ave E - Room 1244 N (First Floor)\u003cBR\u003eSpringfield, Illinois\u003cBR\u003e\u003cB\u003e- and -\u003c/B\u003e\u003cBR\u003eIPCB Office\u003cBR\u003eJames R. Thompson Center\u003cBR\u003e100 W Randolph - Room 11-512\u003cBR\u003eChicago, Illinois","Cancelled":"","VC":"V","CaseNumber":"N/A","CaseId":0,"IsFullDay":false,"CalendarDescription":null},{"CalendarId":797,"StartDateTime":"11/15/2018 11:00:00 AM","EndDateTime":"","FullName":"Don Brown","CalendarTypeDesc":"Board Meeting","Description":"\u003cdiv class=\u0027eventBoardMeeting eventDetails\u0027\u003e\r\n\u003cdiv class=\u0027eventHeading\u0027\u003eBoard Meeting\u003c/div\u003e\r\n\u003cdiv class=\u0027eventLocation\u0027\u003eIPCB Office\u003cBR\u003e1021 N Grand Ave E - Room 1244 N (First Floor)\u003cBR\u003eSpringfield, Illinois\u003cBR\u003e\u003cB\u003e- and -\u003c/B\u003e\u003cBR\u003eIPCB Office\u003cBR\u003eJames R. Thompson Center\u003cBR\u003e100 W Randolph - Room 11-512\u003cBR\u003eChicago, Illinois\u003c/div\u003e\r\n\u003c/div\u003e\r\n","Location":"IPCB Office\u003cBR\u003e1021 N Grand Ave E - Room 1244 N (First Floor)\u003cBR\u003eSpringfield, Illinois\u003cBR\u003e\u003cB\u003e- and -\u003c/B\u003e\u003cBR\u003eIPCB Office\u003cBR\u003eJames R. Thompson Center\u003cBR\u003e100 W Randolph - Room 11-512\u003cBR\u003eChicago, Illinois","Cancelled":"","VC":"V","CaseNumber":"N/A","CaseId":0,"IsFullDay":false,"CalendarDescription":null},{"CalendarId":798,"StartDateTime":"12/6/2018 11:00:00 AM","EndDateTime":"12/6/2018 11:00:00 AM","FullName":"Don Brown","CalendarTypeDesc":"Board Meeting","Description":"\u003cdiv class=\u0027eventBoardMeeting eventDetails\u0027\u003e\r\n\u003cdiv class=\u0027eventHeading\u0027\u003eBoard Meeting\u003c/div\u003e\r\n\u003cdiv class=\u0027eventLocation\u0027\u003eIPCB Office\u003cBR\u003e1021 N Grand Ave E - Room 1244 N (First Floor)\u003cBR\u003eSpringfield, Illinois\u003cBR\u003e\u003cB\u003e- and -\u003c/B\u003e\u003cBR\u003eIPCB Office\u003cBR\u003eJames R. Thompson Center\u003cBR\u003e100 W Randolph - Room 11-512\u003cBR\u003eChicago, Illinois\u003c/div\u003e\r\n\u003c/div\u003e\r\n","Location":"IPCB Office\u003cBR\u003e1021 N Grand Ave E - Room 1244 N (First Floor)\u003cBR\u003eSpringfield, Illinois\u003cBR\u003e\u003cB\u003e- and -\u003c/B\u003e\u003cBR\u003eIPCB Office\u003cBR\u003eJames R. Thompson Center\u003cBR\u003e100 W Randolph - Room 11-512\u003cBR\u003eChicago, Illinois","Cancelled":"","VC":"V","CaseNumber":"N/A","CaseId":0,"IsFullDay":false,"CalendarDescription":null},{"CalendarId":799,"StartDateTime":"12/20/2018 11:00:00 AM","EndDateTime":"","FullName":"Don Brown","CalendarTypeDesc":"Board Meeting","Description":"\u003cdiv class=\u0027eventBoardMeeting eventDetails\u0027\u003e\r\n\u003cdiv class=\u0027eventHeading\u0027\u003eBoard Meeting\u003c/div\u003e\r\n\u003cdiv class=\u0027eventLocation\u0027\u003eIPCB Office\u003cBR\u003e1021 N Grand Ave E - Room 1244 N (First Floor)\u003cBR\u003eSpringfield, Illinois\u003cBR\u003e\u003cB\u003e- and -\u003c/B\u003e\u003cBR\u003eIPCB Office\u003cBR\u003eJames R. Thompson Center\u003cBR\u003e100 W Randolph - Room 11-512\u003cBR\u003eChicago, Illinois\u003c/div\u003e\r\n\u003c/div\u003e\r\n","Location":"IPCB Office\u003cBR\u003e1021 N Grand Ave E - Room 1244 N (First Floor)\u003cBR\u003eSpringfield, Illinois\u003cBR\u003e\u003cB\u003e- and -\u003c/B\u003e\u003cBR\u003eIPCB Office\u003cBR\u003eJames R. Thompson Center\u003cBR\u003e100 W Randolph - Room 11-512\u003cBR\u003eChicago, Illinois","Cancelled":"","VC":"V","CaseNumber":"N/A","CaseId":0,"IsFullDay":false,"CalendarDescription":null},{"CalendarId":807,"StartDateTime":"10/8/2018 1:04:00 PM","EndDateTime":"","FullName":"Don Brown","CalendarTypeDesc":"Holiday","Description":"\u003cdiv class=\u0027eventHoliday eventDetails\u0027\u003e\r\nColunbus Day - Board Closed\u003cbr /\u003e\r\n\u003c/div\u003e\r\n","Location":"","Cancelled":"","VC":"N","CaseNumber":"N/A","CaseId":0,"IsFullDay":false,"CalendarDescription":null},{"CalendarId":808,"StartDateTime":"11/6/2018 1:04:00 PM","EndDateTime":"","FullName":"Don Brown","CalendarTypeDesc":"Holiday","Description":"\u003cdiv class=\u0027eventHoliday eventDetails\u0027\u003e\r\nGeneral Election Day - Board Closed\u003cbr /\u003e\r\n\u003c/div\u003e\r\n","Location":"","Cancelled":"","VC":"N","CaseNumber":"N/A","CaseId":0,"IsFullDay":false,"CalendarDescription":null},{"CalendarId":809,"StartDateTime":"11/12/2018 1:05:00 PM","EndDateTime":"","FullName":"Don Brown","CalendarTypeDesc":"Holiday","Description":"\u003cdiv class=\u0027eventHoliday eventDetails\u0027\u003e\r\nVeteran\u0027s Day - Board Closed\u003cbr /\u003e\r\n\u003c/div\u003e\r\n","Location":"","Cancelled":"","VC":"N","CaseNumber":"N/A","CaseId":0,"IsFullDay":false,"CalendarDescription":null},{"CalendarId":810,"StartDateTime":"11/22/2018 1:06:00 PM","EndDateTime":"","FullName":"Don Brown","CalendarTypeDesc":"Holiday","Description":"\u003cdiv class=\u0027eventHoliday eventDetails\u0027\u003e\r\nThanksgiving - Board Closed\u003cbr /\u003e\r\n\u003c/div\u003e\r\n","Location":"","Cancelled":"","VC":"N","CaseNumber":"N/A","CaseId":0,"IsFullDay":false,"CalendarDescription":null},{"CalendarId":811,"StartDateTime":"11/23/2018 1:06:00 PM","EndDateTime":"","FullName":"Don Brown","CalendarTypeDesc":"Holiday","Description":"\u003cdiv class=\u0027eventHoliday eventDetails\u0027\u003e\r\nThanksgiving - Board Closed\u003cbr /\u003e\r\n\u003c/div\u003e\r\n","Location":"","Cancelled":"","VC":"N","CaseNumber":"N/A","CaseId":0,"IsFullDay":false,"CalendarDescription":null},{"CalendarId":812,"StartDateTime":"12/25/2018 1:07:00 PM","EndDateTime":"","FullName":"Don Brown","CalendarTypeDesc":"Holiday","Description":"\u003cdiv class=\u0027eventHoliday eventDetails\u0027\u003e\r\nChristmas - Board Closed\u003cbr /\u003e\r\n\u003c/div\u003e\r\n","Location":"","Cancelled":"","VC":"N","CaseNumber":"N/A","CaseId":0,"IsFullDay":false,"CalendarDescription":null},{"CalendarId":852,"StartDateTime":"3/28/2019 11:00:00 AM","EndDateTime":"3/28/2019 11:00:00 AM","FullName":"Don Brown","CalendarTypeDesc":"Board Meeting","Description":"\u003cdiv class=\u0027eventBoardMeeting eventDetails\u0027\u003e\r\n\u003cdiv class=\u0027eventHeading\u0027\u003eBoard Meeting\u003c/div\u003e\r\n\u003cdiv class=\u0027eventLocation\u0027\u003eIPCB Office \n1021 N Grand Ave E - Room 1244 N (First Floor)\nSpringfield, Illinois\n- and -\nIPCB Office\nJames R. Thompson Center\n100 W Randolph - Room 11-512\nChicago, Illinois\u003c/div\u003e\r\n\u003c/div\u003e\r\n","Location":"IPCB Office \n1021 N Grand Ave E - Room 1244 N (First Floor)\nSpringfield, Illinois\n- and -\nIPCB Office\nJames R. Thompson Center\n100 W Randolph - Room 11-512\nChicago, Illinois","Cancelled":"","VC":"V","CaseNumber":"N/A","CaseId":0,"IsFullDay":false,"CalendarDescription":null},{"CalendarId":853,"StartDateTime":"4/11/2019 11:00:00 AM","EndDateTime":"4/11/2019 11:00:00 AM","FullName":"Don Brown","CalendarTypeDesc":"Board Meeting","Description":"\u003cdiv class=\u0027eventBoardMeeting eventDetails\u0027\u003e\r\n\u003cdiv class=\u0027eventHeading\u0027\u003eBoard Meeting\u003c/div\u003e\r\n\u003cdiv class=\u0027eventLocation\u0027\u003eIPCB Office \n1021 N Grand Ave E - Room 1244 N (First Floor)\nSpringfield, Illinois\n- and -\nIPCB Office\nJames R. Thompson Center\n100 W Randolph - Room 11-512\nChicago, Illinois\u003c/div\u003e\r\n\u003c/div\u003e\r\n","Location":"IPCB Office \n1021 N Grand Ave E - Room 1244 N (First Floor)\nSpringfield, Illinois\n- and -\nIPCB Office\nJames R. Thompson Center\n100 W Randolph - Room 11-512\nChicago, Illinois","Cancelled":"","VC":"V","CaseNumber":"N/A","CaseId":0,"IsFullDay":false,"CalendarDescription":null},{"CalendarId":854,"StartDateTime":"4/25/2019 11:00:00 AM","EndDateTime":"4/25/2019 11:00:00 AM","FullName":"Don Brown","CalendarTypeDesc":"Board Meeting","Description":"\u003cdiv class=\u0027eventBoardMeeting eventDetails\u0027\u003e\r\n\u003cdiv class=\u0027eventHeading\u0027\u003eBoard Meeting\u003c/div\u003e\r\n\u003cdiv class=\u0027eventLocation\u0027\u003eIPCB Office \n1021 N Grand Ave E - Room 1244 N (First Floor)\nSpringfield, Illinois\n- and -\nIPCB Office\nJames R. Thompson Center\n100 W Randolph - Room 11-512\nChicago, Illinois\u003c/div\u003e\r\n\u003c/div\u003e\r\n","Location":"IPCB Office \n1021 N Grand Ave E - Room 1244 N (First Floor)\nSpringfield, Illinois\n- and -\nIPCB Office\nJames R. Thompson Center\n100 W Randolph - Room 11-512\nChicago, Illinois","Cancelled":"","VC":"V","CaseNumber":"N/A","CaseId":0,"IsFullDay":false,"CalendarDescription":null},{"CalendarId":855,"StartDateTime":"5/9/2019 11:00:00 AM","EndDateTime":"5/9/2019 11:00:00 AM","FullName":"Don Brown","CalendarTypeDesc":"CANCELLED Board Meeting","Description":"Event Type: CANCELLED Board Meeting\r\n","Location":"IPCB Office \n1021 N Grand Ave E - Room 1244 N (First Floor)\nSpringfield, Illinois\n- and -\nIPCB Office\nJames R. Thompson Center\n100 W Randolph - Room 11-512\nChicago, Illinois","Cancelled":"","VC":"V","CaseNumber":"N/A","CaseId":0,"IsFullDay":false,"CalendarDescription":null},{"CalendarId":880,"StartDateTime":"12/25/2019 12:00:00 AM","EndDateTime":"12/25/2019 12:00:00 AM","FullName":"Don Brown","CalendarTypeDesc":"Holiday","Description":"\u003cdiv class=\u0027eventHoliday eventDetails\u0027\u003e\r\nChristmas - Board Closed\u003cbr /\u003e\r\n\u003c/div\u003e\r\n","Location":"","Cancelled":"","VC":"N","CaseNumber":"N/A","CaseId":0,"IsFullDay":false,"CalendarDescription":null},{"CalendarId":881,"StartDateTime":"1/1/2020 12:00:00 AM","EndDateTime":"1/1/2020 12:00:00 AM","FullName":"Don Brown","CalendarTypeDesc":"Holiday","Description":"\u003cdiv class=\u0027eventHoliday eventDetails\u0027\u003e\r\nNew Year\u0027s Day - Board Closed\u003cbr /\u003e\r\n\u003c/div\u003e\r\n","Location":"","Cancelled":"","VC":"N","CaseNumber":"N/A","CaseId":0,"IsFullDay":false,"CalendarDescription":null},{"CalendarId":882,"StartDateTime":"1/20/2020 12:00:00 AM","EndDateTime":"1/20/2020 12:00:00 AM","FullName":"Don Brown","CalendarTypeDesc":"Holiday","Description":"\u003cdiv class=\u0027eventHoliday eventDetails\u0027\u003e\r\nMartin Luther King Day - Board Closed\u003cbr /\u003e\r\n\u003c/div\u003e\r\n","Location":"","Cancelled":"","VC":"N","CaseNumber":"N/A","CaseId":0,"IsFullDay":false,"CalendarDescription":null},{"CalendarId":883,"StartDateTime":"2/12/2020 12:00:00 AM","EndDateTime":"2/12/2020 12:00:00 AM","FullName":"Don Brown","CalendarTypeDesc":"Holiday","Description":"\u003cdiv class=\u0027eventHoliday eventDetails\u0027\u003e\r\nLincoln\u0027s Birthday - Board Closed\u003cbr /\u003e\r\n\u003c/div\u003e\r\n","Location":"","Cancelled":"","VC":"N","CaseNumber":"N/A","CaseId":0,"IsFullDay":false,"CalendarDescription":null},{"CalendarId":884,"StartDateTime":"2/17/2020 12:00:00 AM","EndDateTime":"2/17/2020 12:00:00 AM","FullName":"Don Brown","CalendarTypeDesc":"Holiday","Description":"\u003cdiv class=\u0027eventHoliday eventDetails\u0027\u003e\r\nPresident\u0027s Day - Board Closed\u003cbr /\u003e\r\n\u003c/div\u003e\r\n","Location":"","Cancelled":"","VC":"N","CaseNumber":"N/A","CaseId":0,"IsFullDay":false,"CalendarDescription":null},{"CalendarId":885,"StartDateTime":"5/25/2020 12:00:00 AM","EndDateTime":"5/25/2020 12:00:00 AM","FullName":"Don Brown","CalendarTypeDesc":"Holiday","Description":"\u003cdiv class=\u0027eventHoliday eventDetails\u0027\u003e\r\nMemorial Day - Board Closed\u003cbr /\u003e\r\n\u003c/div\u003e\r\n","Location":"","Cancelled":"","VC":"N","CaseNumber":"N/A","CaseId":0,"IsFullDay":false,"CalendarDescription":null},{"CalendarId":886,"StartDateTime":"7/3/2020 12:00:00 AM","EndDateTime":"7/3/2020 12:00:00 AM","FullName":"Don Brown","CalendarTypeDesc":"Holiday","Description":"\u003cdiv class=\u0027eventHoliday eventDetails\u0027\u003e\r\nIndependence Day - Board Closed\u003cbr /\u003e\r\n\u003c/div\u003e\r\n","Location":"","Cancelled":"","VC":"N","CaseNumber":"N/A","CaseId":0,"IsFullDay":false,"CalendarDescription":null},{"CalendarId":887,"StartDateTime":"9/7/2020 12:00:00 AM","EndDateTime":"9/7/2020 12:00:00 AM","FullName":"Don Brown","CalendarTypeDesc":"Holiday","Description":"\u003cdiv class=\u0027eventHoliday eventDetails\u0027\u003e\r\nLabor Day - Board Closed\u003cbr /\u003e\r\n\u003c/div\u003e\r\n","Location":"","Cancelled":"","VC":"N","CaseNumber":"N/A","CaseId":0,"IsFullDay":false,"CalendarDescription":null},{"CalendarId":888,"StartDateTime":"10/12/2020 12:00:00 AM","EndDateTime":"10/12/2020 12:00:00 AM","FullName":"Don Brown","CalendarTypeDesc":"Holiday","Description":"\u003cdiv class=\u0027eventHoliday eventDetails\u0027\u003e\r\nColumbus Day - Board Closed\u003cbr /\u003e\r\n\u003c/div\u003e\r\n","Location":"","Cancelled":"","VC":"N","CaseNumber":"N/A","CaseId":0,"IsFullDay":false,"CalendarDescription":null},{"CalendarId":889,"StartDateTime":"11/3/2020 12:00:00 AM","EndDateTime":"11/3/2020 12:00:00 AM","FullName":"Don Brown","CalendarTypeDesc":"Holiday","Description":"\u003cdiv class=\u0027eventHoliday eventDetails\u0027\u003e\r\nGeneral Election - Board Closed\u003cbr /\u003e\r\n\u003c/div\u003e\r\n","Location":"","Cancelled":"","VC":"N","CaseNumber":"N/A","CaseId":0,"IsFullDay":false,"CalendarDescription":null},{"CalendarId":890,"StartDateTime":"11/11/2020 12:00:00 AM","EndDateTime":"11/11/2020 12:00:00 AM","FullName":"Don Brown","CalendarTypeDesc":"Holiday","Description":"\u003cdiv class=\u0027eventHoliday eventDetails\u0027\u003e\r\nVeteran\u0027s Day - Board Closed\u003cbr /\u003e\r\n\u003c/div\u003e\r\n","Location":"","Cancelled":"","VC":"N","CaseNumber":"N/A","CaseId":0,"IsFullDay":false,"CalendarDescription":null},{"CalendarId":891,"StartDateTime":"11/26/2020 12:00:00 AM","EndDateTime":"11/26/2020 12:00:00 AM","FullName":"Don Brown","CalendarTypeDesc":"Holiday","Description":"\u003cdiv class=\u0027eventHoliday eventDetails\u0027\u003e\r\nThanksgiving - Board Closed\u003cbr /\u003e\r\n\u003c/div\u003e\r\n","Location":"","Cancelled":"","VC":"N","CaseNumber":"N/A","CaseId":0,"IsFullDay":false,"CalendarDescription":null},{"CalendarId":892,"StartDateTime":"11/27/2020 12:00:00 AM","EndDateTime":"11/27/2020 12:00:00 AM","FullName":"Don Brown","CalendarTypeDesc":"Holiday","Description":"\u003cdiv class=\u0027eventHoliday eventDetails\u0027\u003e\r\nThanksgiving - Board Closed\u003cbr /\u003e\r\n\u003c/div\u003e\r\n","Location":"","Cancelled":"","VC":"N","CaseNumber":"N/A","CaseId":0,"IsFullDay":false,"CalendarDescription":null},{"CalendarId":893,"StartDateTime":"12/25/2020 12:00:00 AM","EndDateTime":"12/25/2020 12:00:00 AM","FullName":"Don Brown","CalendarTypeDesc":"Holiday","Description":"\u003cdiv class=\u0027eventHoliday eventDetails\u0027\u003e\r\nChristmas - Board Closed\u003cbr /\u003e\r\n\u003c/div\u003e\r\n","Location":"","Cancelled":"","VC":"N","CaseNumber":"N/A","CaseId":0,"IsFullDay":false,"CalendarDescription":null},{"CalendarId":894,"StartDateTime":"2/12/2019 12:00:00 AM","EndDateTime":"2/12/2019 12:00:00 AM","FullName":"Don Brown","CalendarTypeDesc":"Holiday","Description":"\u003cdiv class=\u0027eventHoliday eventDetails\u0027\u003e\r\nLincoln\u0027s Birthday - Board Closed\u003cbr /\u003e\r\n\u003c/div\u003e\r\n","Location":"","Cancelled":"","VC":"N","CaseNumber":"N/A","CaseId":0,"IsFullDay":false,"CalendarDescription":null},{"CalendarId":895,"StartDateTime":"2/18/2019 12:00:00 AM","EndDateTime":"2/18/2019 12:00:00 AM","FullName":"Don Brown","CalendarTypeDesc":"Holiday","Description":"\u003cdiv class=\u0027eventHoliday eventDetails\u0027\u003e\r\nPresident\u0027s Day - Board Closed\u003cbr /\u003e\r\n\u003c/div\u003e\r\n","Location":"","Cancelled":"","VC":"N","CaseNumber":"N/A","CaseId":0,"IsFullDay":false,"CalendarDescription":null},{"CalendarId":25523,"StartDateTime":"10/17/2018 10:00:00 AM","EndDateTime":"10/17/2018 10:00:00 AM","FullName":"Unavailable","CalendarTypeDesc":"Hearing R2018-029 ","Description":"\u003cdiv class=\u0027eventHearing eventDetails\u0027\u003e\r\n\u003cdiv class=\u0027eventHeading\u0027\u003eR2018-029 \u003c/div\u003e\r\n\u003cbr /\u003e\r\n\u003cdiv class=\u0027eventDescription\u0027\u003eIn the Matter of: Amendments to 35 Ill. Adm. Code Subtitle M\u003c/div\u003e\r\n\u003cbr /\u003e\r\n\u003cdiv class=\u0027eventLocation\u0027\u003eIPCB SPRINGFIELD HEARING ROOM\u003c/div\u003e\r\n\u003cbr /\u003e\r\n\u003ca href=\u0027/Cases/GetCaseDetailsById?caseId=15564\u0027\u003eClick here for details on this case\u003c/a\u003e\r\n\u003c/div\u003e\r\n","Location":"IPCB SPRINGFIELD HEARING ROOM","Cancelled":"","VC":"","CaseNumber":"R2018-029 ","CaseId":15564,"IsFullDay":false,"CalendarDescription":null},{"CalendarId":25524,"StartDateTime":"10/17/2018 10:00:00 AM","EndDateTime":"10/17/2018 10:00:00 AM","FullName":"Unavailable","CalendarTypeDesc":"Hearing R2018-029 ","Description":"\u003cdiv class=\u0027eventHearing eventDetails\u0027\u003e\r\n\u003cdiv class=\u0027eventHeading\u0027\u003eR2018-029 \u003c/div\u003e\r\n\u003cbr /\u003e\r\n\u003cdiv class=\u0027eventDescription\u0027\u003eIn the Matter of: Amendments to 35 Ill. Adm. Code Subtitle M\u003c/div\u003e\r\n\u003cbr /\u003e\r\n\u003cdiv class=\u0027eventLocation\u0027\u003eJames R. Thompson Center\u003c/div\u003e\r\n\u003cbr /\u003e\r\n\u003ca href=\u0027/Cases/GetCaseDetailsById?caseId=15564\u0027\u003eClick here for details on this case\u003c/a\u003e\r\n\u003c/div\u003e\r\n","Location":"James R. Thompson Center","Cancelled":"","VC":"","CaseNumber":"R2018-029 ","CaseId":15564,"IsFullDay":false,"CalendarDescription":null},{"CalendarId":25688,"StartDateTime":"11/27/2018 9:00:00 AM","EndDateTime":"11/27/2018 9:00:00 AM","FullName":"Unavailable","CalendarTypeDesc":"Hearing R2019-001 ","Description":"\u003cdiv class=\u0027eventHearing eventDetails\u0027\u003e\r\n\u003cdiv class=\u0027eventHeading\u0027\u003eR2019-001 \u003c/div\u003e\r\n\u003cbr /\u003e\r\n\u003cdiv class=\u0027eventDescription\u0027\u003eProposed New 35 Ill. Adm. Code 204, Prevention of Significant Deterioration, Amendments To 35 Ill. Adm. Code Parts 101, 105, 203, 211, And 215\u003c/div\u003e\r\n\u003cbr /\u003e\r\n\u003cdiv class=\u0027eventLocation\u0027\u003eJames R. Thompson Center-Video Conference\u003c/div\u003e\r\n\u003cbr /\u003e\r\n\u003ca href=\u0027/Cases/GetCaseDetailsById?caseId=15596\u0027\u003eClick here for details on this case\u003c/a\u003e\r\n\u003c/div\u003e\r\n","Location":"James R. Thompson Center-Video Conference","Cancelled":"","VC":"","CaseNumber":"R2019-001 ","CaseId":15596,"IsFullDay":false,"CalendarDescription":null},{"CalendarId":25690,"StartDateTime":"11/27/2018 9:00:00 AM","EndDateTime":"11/27/2018 9:00:00 AM","FullName":"Unavailable","CalendarTypeDesc":"Hearing R2019-001 ","Description":"\u003cdiv class=\u0027eventHearing eventDetails\u0027\u003e\r\n\u003cdiv class=\u0027eventHeading\u0027\u003eR2019-001 \u003c/div\u003e\r\n\u003cbr /\u003e\r\n\u003cdiv class=\u0027eventDescription\u0027\u003eProposed New 35 Ill. Adm. Code 204, Prevention of Significant Deterioration, Amendments To 35 Ill. Adm. Code Parts 101, 105, 203, 211, And 215\u003c/div\u003e\r\n\u003cbr /\u003e\r\n\u003cdiv class=\u0027eventLocation\u0027\u003eIllinois Pollution Control Board-Video Conference\u003c/div\u003e\r\n\u003cbr /\u003e\r\n\u003ca href=\u0027/Cases/GetCaseDetailsById?caseId=15596\u0027\u003eClick here for details on this case\u003c/a\u003e\r\n\u003c/div\u003e\r\n","Location":"Illinois Pollution Control Board-Video Conference","Cancelled":"","VC":"","CaseNumber":"R2019-001 ","CaseId":15596,"IsFullDay":false,"CalendarDescription":null},{"CalendarId":25695,"StartDateTime":"11/28/2018 1:00:00 PM","EndDateTime":"11/28/2018 1:00:00 PM","FullName":"Unavailable","CalendarTypeDesc":"Hearing R2019-001 ","Description":"\u003cdiv class=\u0027eventHearing eventDetails\u0027\u003e\r\n\u003cdiv class=\u0027eventHeading\u0027\u003eR2019-001 \u003c/div\u003e\r\n\u003cbr /\u003e\r\n\u003cdiv class=\u0027eventDescription\u0027\u003eProposed New 35 Ill. Adm. Code 204, Prevention of Significant Deterioration, Amendments To 35 Ill. Adm. Code Parts 101, 105, 203, 211, And 215\u003c/div\u003e\r\n\u003cbr /\u003e\r\n\u003cdiv class=\u0027eventLocation\u0027\u003eJames R. Thompson Center-Video Conference\u003c/div\u003e\r\n\u003cbr /\u003e\r\n\u003ca href=\u0027/Cases/GetCaseDetailsById?caseId=15596\u0027\u003eClick here for details on this case\u003c/a\u003e\r\n\u003c/div\u003e\r\n","Location":"James R. Thompson Center-Video Conference","Cancelled":"","VC":"","CaseNumber":"R2019-001 ","CaseId":15596,"IsFullDay":false,"CalendarDescription":null},{"CalendarId":25696,"StartDateTime":"11/28/2018 1:00:00 PM","EndDateTime":"11/28/2018 1:00:00 PM","FullName":"Unavailable","CalendarTypeDesc":"Hearing R2019-001 ","Description":"\u003cdiv class=\u0027eventHearing eventDetails\u0027\u003e\r\n\u003cdiv class=\u0027eventHeading\u0027\u003eR2019-001 \u003c/div\u003e\r\n\u003cbr /\u003e\r\n\u003cdiv class=\u0027eventDescription\u0027\u003eProposed New 35 Ill. Adm. Code 204, Prevention of Significant Deterioration, Amendments To 35 Ill. Adm. Code Parts 101, 105, 203, 211, And 215\u003c/div\u003e\r\n\u003cbr /\u003e\r\n\u003cdiv class=\u0027eventLocation\u0027\u003eIllinois Pollution Control Board-Video Conference\u003c/div\u003e\r\n\u003cbr /\u003e\r\n\u003ca href=\u0027/Cases/GetCaseDetailsById?caseId=15596\u0027\u003eClick here for details on this case\u003c/a\u003e\r\n\u003c/div\u003e\r\n","Location":"Illinois Pollution Control Board-Video Conference","Cancelled":"","VC":"","CaseNumber":"R2019-001 ","CaseId":15596,"IsFullDay":false,"CalendarDescription":null},{"CalendarId":25697,"StartDateTime":"10/15/2018 1:30:00 PM","EndDateTime":"10/15/2018 1:30:00 PM","FullName":"Unavailable","CalendarTypeDesc":"Hearing R2018-032 ","Description":"\u003cdiv class=\u0027eventHearing eventDetails\u0027\u003e\r\n\u003cdiv class=\u0027eventHeading\u0027\u003eR2018-032 \u003c/div\u003e\r\n\u003cbr /\u003e\r\n\u003cdiv class=\u0027eventDescription\u0027\u003eIn the Matter of: Amendments to General Use Water Quality Standards for Chloride\u003c/div\u003e\r\n\u003cbr /\u003e\r\n\u003cdiv class=\u0027eventLocation\u0027\u003ellinois Pollution Control Board-Video Conference\u003c/div\u003e\r\n\u003cbr /\u003e\r\n\u003ca href=\u0027/Cases/GetCaseDetailsById?caseId=15588\u0027\u003eClick here for details on this case\u003c/a\u003e\r\n\u003c/div\u003e\r\n","Location":"llinois Pollution Control Board-Video Conference","Cancelled":"","VC":"","CaseNumber":"R2018-032 ","CaseId":15588,"IsFullDay":false,"CalendarDescription":null},{"CalendarId":25698,"StartDateTime":"10/15/2018 1:30:00 PM","EndDateTime":"10/15/2018 1:30:00 PM","FullName":"Unavailable","CalendarTypeDesc":"Hearing R2018-032 ","Description":"\u003cdiv class=\u0027eventHearing eventDetails\u0027\u003e\r\n\u003cdiv class=\u0027eventHeading\u0027\u003eR2018-032 \u003c/div\u003e\r\n\u003cbr /\u003e\r\n\u003cdiv class=\u0027eventDescription\u0027\u003eIn the Matter of: Amendments to General Use Water Quality Standards for Chloride\u003c/div\u003e\r\n\u003cbr /\u003e\r\n\u003cdiv class=\u0027eventLocation\u0027\u003eJames R. Thompson Center-Video Conference\u003c/div\u003e\r\n\u003cbr /\u003e\r\n\u003ca href=\u0027/Cases/GetCaseDetailsById?caseId=15588\u0027\u003eClick here for details on this case\u003c/a\u003e\r\n\u003c/div\u003e\r\n","Location":"James R. Thompson Center-Video Conference","Cancelled":"","VC":"","CaseNumber":"R2018-032 ","CaseId":15588,"IsFullDay":false,"CalendarDescription":null},{"CalendarId":26706,"StartDateTime":"10/22/2018 2:00:00 PM","EndDateTime":"10/22/2018 2:00:00 PM","FullName":"Unavailable","CalendarTypeDesc":"Hearing R2018-020 ","Description":"\u003cdiv class=\u0027eventHearing eventDetails\u0027\u003e\r\n\u003cdiv class=\u0027eventHeading\u0027\u003eR2018-020 \u003c/div\u003e\r\n\u003cbr /\u003e\r\n\u003cdiv class=\u0027eventDescription\u0027\u003eAmendments to 35 Ill. Adm. Code 225.233, Multi-Pollutant Standards (MPS)\u003c/div\u003e\r\n\u003cbr /\u003e\r\n\u003cdiv class=\u0027eventLocation\u0027\u003eCANCELLED-Prehearing Conference \u003c/div\u003e\r\n\u003cbr /\u003e\r\n\u003ca href=\u0027/Cases/GetCaseDetailsById?caseId=15480\u0027\u003eClick here for details on this case\u003c/a\u003e\r\n\u003c/div\u003e\r\n","Location":"CANCELLED-Prehearing Conference ","Cancelled":"","VC":"","CaseNumber":"R2018-020 ","CaseId":15480,"IsFullDay":false,"CalendarDescription":null},{"CalendarId":26707,"StartDateTime":"10/22/2018 2:00:00 PM","EndDateTime":"10/22/2018 2:00:00 PM","FullName":"Unavailable","CalendarTypeDesc":"Hearing R2018-020 ","Description":"\u003cdiv class=\u0027eventHearing eventDetails\u0027\u003e\r\n\u003cdiv class=\u0027eventHeading\u0027\u003eR2018-020 \u003c/div\u003e\r\n\u003cbr /\u003e\r\n\u003cdiv class=\u0027eventDescription\u0027\u003eAmendments to 35 Ill. Adm. Code 225.233, Multi-Pollutant Standards (MPS)\u003c/div\u003e\r\n\u003cbr /\u003e\r\n\u003cdiv class=\u0027eventLocation\u0027\u003eCANCELLED-Prehearing Conference \u003c/div\u003e\r\n\u003cbr /\u003e\r\n\u003ca href=\u0027/Cases/GetCaseDetailsById?caseId=15480\u0027\u003eClick here for details on this case\u003c/a\u003e\r\n\u003c/div\u003e\r\n","Location":"CANCELLED-Prehearing Conference ","Cancelled":"","VC":"","CaseNumber":"R2018-020 ","CaseId":15480,"IsFullDay":false,"CalendarDescription":null},{"CalendarId":26708,"StartDateTime":"11/8/2018 11:00:00 AM","EndDateTime":"11/8/2018 11:00:00 AM","FullName":"Unavailable","CalendarTypeDesc":"Hearing R2018-020 ","Description":"\u003cdiv class=\u0027eventHearing eventDetails\u0027\u003e\r\n\u003cdiv class=\u0027eventHeading\u0027\u003eR2018-020 \u003c/div\u003e\r\n\u003cbr /\u003e\r\n\u003cdiv class=\u0027eventDescription\u0027\u003eAmendments to 35 Ill. Adm. Code 225.233, Multi-Pollutant Standards (MPS)\u003c/div\u003e\r\n\u003cbr /\u003e\r\n\u003cdiv class=\u0027eventLocation\u0027\u003ePrehearing Conference \u003c/div\u003e\r\n\u003cbr /\u003e\r\n\u003ca href=\u0027/Cases/GetCaseDetailsById?caseId=15480\u0027\u003eClick here for details on this case\u003c/a\u003e\r\n\u003c/div\u003e\r\n","Location":"Prehearing Conference ","Cancelled":"","VC":"","CaseNumber":"R2018-020 ","CaseId":15480,"IsFullDay":false,"CalendarDescription":null},{"CalendarId":26709,"StartDateTime":"11/8/2018 11:00:00 AM","EndDateTime":"11/8/2018 11:00:00 AM","FullName":"Unavailable","CalendarTypeDesc":"Hearing R2018-020 ","Description":"\u003cdiv class=\u0027eventHearing eventDetails\u0027\u003e\r\n\u003cdiv class=\u0027eventHeading\u0027\u003eR2018-020 \u003c/div\u003e\r\n\u003cbr /\u003e\r\n\u003cdiv class=\u0027eventDescription\u0027\u003eAmendments to 35 Ill. Adm. Code 225.233, Multi-Pollutant Standards (MPS)\u003c/div\u003e\r\n\u003cbr /\u003e\r\n\u003cdiv class=\u0027eventLocation\u0027\u003ePrehearing Conference\u003c/div\u003e\r\n\u003cbr /\u003e\r\n\u003ca href=\u0027/Cases/GetCaseDetailsById?caseId=15480\u0027\u003eClick here for details on this case\u003c/a\u003e\r\n\u003c/div\u003e\r\n","Location":"Prehearing Conference","Cancelled":"","VC":"","CaseNumber":"R2018-020 ","CaseId":15480,"IsFullDay":false,"CalendarDescription":null},{"CalendarId":26717,"StartDateTime":"1/23/2019 10:00:00 AM","EndDateTime":"1/23/2019 10:00:00 AM","FullName":"Unavailable","CalendarTypeDesc":"Hearing R2018-032 ","Description":"\u003cdiv class=\u0027eventHearing eventDetails\u0027\u003e\r\n\u003cdiv class=\u0027eventHeading\u0027\u003eR2018-032 \u003c/div\u003e\r\n\u003cbr /\u003e\r\n\u003cdiv class=\u0027eventDescription\u0027\u003eIn the Matter of: Amendments to General Use Water Quality Standards for Chloride\u003c/div\u003e\r\n\u003cbr /\u003e\r\n\u003cdiv class=\u0027eventLocation\u0027\u003eIllinois Pollution Control Board-Video Conference\u003c/div\u003e\r\n\u003cbr /\u003e\r\n\u003ca href=\u0027/Cases/GetCaseDetailsById?caseId=15588\u0027\u003eClick here for details on this case\u003c/a\u003e\r\n\u003c/div\u003e\r\n","Location":"Illinois Pollution Control Board-Video Conference","Cancelled":"","VC":"","CaseNumber":"R2018-032 ","CaseId":15588,"IsFullDay":false,"CalendarDescription":null},{"CalendarId":26718,"StartDateTime":"1/24/2019 10:00:00 AM","EndDateTime":"1/24/2019 10:00:00 AM","FullName":"Unavailable","CalendarTypeDesc":"Hearing R2018-032 ","Description":"\u003cdiv class=\u0027eventHearing eventDetails\u0027\u003e\r\n\u003cdiv class=\u0027eventHeading\u0027\u003eR2018-032 \u003c/div\u003e\r\n\u003cbr /\u003e\r\n\u003cdiv class=\u0027eventDescription\u0027\u003eIn the Matter of: Amendments to General Use Water Quality Standards for Chloride\u003c/div\u003e\r\n\u003cbr /\u003e\r\n\u003cdiv class=\u0027eventLocation\u0027\u003eIllinois Pollution Control Board-Video Conference\u003c/div\u003e\r\n\u003cbr /\u003e\r\n\u003ca href=\u0027/Cases/GetCaseDetailsById?caseId=15588\u0027\u003eClick here for details on this case\u003c/a\u003e\r\n\u003c/div\u003e\r\n","Location":"Illinois Pollution Control Board-Video Conference","Cancelled":"","VC":"","CaseNumber":"R2018-032 ","CaseId":15588,"IsFullDay":false,"CalendarDescription":null},{"CalendarId":26719,"StartDateTime":"3/6/2019 10:00:00 AM","EndDateTime":"3/6/2019 10:00:00 AM","FullName":"Unavailable","CalendarTypeDesc":"Hearing R2018-032 ","Description":"\u003cdiv class=\u0027eventHearing eventDetails\u0027\u003e\r\n\u003cdiv class=\u0027eventHeading\u0027\u003eR2018-032 \u003c/div\u003e\r\n\u003cbr /\u003e\r\n\u003cdiv class=\u0027eventDescription\u0027\u003eIn the Matter of: Amendments to General Use Water Quality Standards for Chloride\u003c/div\u003e\r\n\u003cbr /\u003e\r\n\u003cdiv class=\u0027eventLocation\u0027\u003eCANCELLED-Illinois Pollution Control Board-Video Conference\u003c/div\u003e\r\n\u003cbr /\u003e\r\n\u003ca href=\u0027/Cases/GetCaseDetailsById?caseId=15588\u0027\u003eClick here for details on this case\u003c/a\u003e\r\n\u003c/div\u003e\r\n","Location":"CANCELLED-Illinois Pollution Control Board-Video Conference","Cancelled":"","VC":"","CaseNumber":"R2018-032 ","CaseId":15588,"IsFullDay":false,"CalendarDescription":null},{"CalendarId":26720,"StartDateTime":"3/7/2019 10:00:00 AM","EndDateTime":"3/7/2019 10:00:00 AM","FullName":"Unavailable","CalendarTypeDesc":"Hearing R2018-032 ","Description":"\u003cdiv class=\u0027eventHearing eventDetails\u0027\u003e\r\n\u003cdiv class=\u0027eventHeading\u0027\u003eR2018-032 \u003c/div\u003e\r\n\u003cbr /\u003e\r\n\u003cdiv class=\u0027eventDescription\u0027\u003eIn the Matter of: Amendments to General Use Water Quality Standards for Chloride\u003c/div\u003e\r\n\u003cbr /\u003e\r\n\u003cdiv class=\u0027eventLocation\u0027\u003eCANCELLED-Illinois Pollution Control Board-Video Conference\u003c/div\u003e\r\n\u003cbr /\u003e\r\n\u003ca href=\u0027/Cases/GetCaseDetailsById?caseId=15588\u0027\u003eClick here for details on this case\u003c/a\u003e\r\n\u003c/div\u003e\r\n","Location":"CANCELLED-Illinois Pollution Control Board-Video Conference","Cancelled":"","VC":"","CaseNumber":"R2018-032 ","CaseId":15588,"IsFullDay":false,"CalendarDescription":null},{"CalendarId":26721,"StartDateTime":"1/23/2019 10:00:00 AM","EndDateTime":"1/23/2019 10:00:00 AM","FullName":"Unavailable","CalendarTypeDesc":"Hearing R2018-032 ","Description":"\u003cdiv class=\u0027eventHearing eventDetails\u0027\u003e\r\n\u003cdiv class=\u0027eventHeading\u0027\u003eR2018-032 \u003c/div\u003e\r\n\u003cbr /\u003e\r\n\u003cdiv class=\u0027eventDescription\u0027\u003eIn the Matter of: Amendments to General Use Water Quality Standards for Chloride\u003c/div\u003e\r\n\u003cbr /\u003e\r\n\u003cdiv class=\u0027eventLocation\u0027\u003eJames R. Thompson Center-Video Conference\u003c/div\u003e\r\n\u003cbr /\u003e\r\n\u003ca href=\u0027/Cases/GetCaseDetailsById?caseId=15588\u0027\u003eClick here for details on this case\u003c/a\u003e\r\n\u003c/div\u003e\r\n","Location":"James R. Thompson Center-Video Conference","Cancelled":"","VC":"","CaseNumber":"R2018-032 ","CaseId":15588,"IsFullDay":false,"CalendarDescription":null},{"CalendarId":26722,"StartDateTime":"1/24/2019 10:00:00 AM","EndDateTime":"1/24/2019 10:00:00 AM","FullName":"Unavailable","CalendarTypeDesc":"Hearing R2018-032 ","Description":"\u003cdiv class=\u0027eventHearing eventDetails\u0027\u003e\r\n\u003cdiv class=\u0027eventHeading\u0027\u003eR2018-032 \u003c/div\u003e\r\n\u003cbr /\u003e\r\n\u003cdiv class=\u0027eventDescription\u0027\u003eIn the Matter of: Amendments to General Use Water Quality Standards for Chloride\u003c/div\u003e\r\n\u003cbr /\u003e\r\n\u003cdiv class=\u0027eventLocation\u0027\u003eJames R. Thompson Center-Video Conference\u003c/div\u003e\r\n\u003cbr /\u003e\r\n\u003ca href=\u0027/Cases/GetCaseDetailsById?caseId=15588\u0027\u003eClick here for details on this case\u003c/a\u003e\r\n\u003c/div\u003e\r\n","Location":"James R. Thompson Center-Video Conference","Cancelled":"","VC":"","CaseNumber":"R2018-032 ","CaseId":15588,"IsFullDay":false,"CalendarDescription":null},{"CalendarId":26723,"StartDateTime":"3/6/2019 10:00:00 AM","EndDateTime":"3/6/2019 10:00:00 AM","FullName":"Unavailable","CalendarTypeDesc":"Hearing R2018-032 ","Description":"\u003cdiv class=\u0027eventHearing eventDetails\u0027\u003e\r\n\u003cdiv class=\u0027eventHeading\u0027\u003eR2018-032 \u003c/div\u003e\r\n\u003cbr /\u003e\r\n\u003cdiv class=\u0027eventDescription\u0027\u003eIn the Matter of: Amendments to General Use Water Quality Standards for Chloride\u003c/div\u003e\r\n\u003cbr /\u003e\r\n\u003cdiv class=\u0027eventLocation\u0027\u003eCANCELLED-James R. Thompson Center-Video Conference\u003c/div\u003e\r\n\u003cbr /\u003e\r\n\u003ca href=\u0027/Cases/GetCaseDetailsById?caseId=15588\u0027\u003eClick here for details on this case\u003c/a\u003e\r\n\u003c/div\u003e\r\n","Location":"CANCELLED-James R. Thompson Center-Video Conference","Cancelled":"","VC":"","CaseNumber":"R2018-032 ","CaseId":15588,"IsFullDay":false,"CalendarDescription":null},{"CalendarId":26724,"StartDateTime":"3/7/2019 10:00:00 AM","EndDateTime":"3/7/2019 10:00:00 AM","FullName":"Unavailable","CalendarTypeDesc":"Hearing R2018-032 ","Description":"\u003cdiv class=\u0027eventHearing eventDetails\u0027\u003e\r\n\u003cdiv class=\u0027eventHeading\u0027\u003eR2018-032 \u003c/div\u003e\r\n\u003cbr /\u003e\r\n\u003cdiv class=\u0027eventDescription\u0027\u003eIn the Matter of: Amendments to General Use Water Quality Standards for Chloride\u003c/div\u003e\r\n\u003cbr /\u003e\r\n\u003cdiv class=\u0027eventLocation\u0027\u003eCANCELLED-James R. Thompson Center-Video Conference\u003c/div\u003e\r\n\u003cbr /\u003e\r\n\u003ca href=\u0027/Cases/GetCaseDetailsById?caseId=15588\u0027\u003eClick here for details on this case\u003c/a\u003e\r\n\u003c/div\u003e\r\n","Location":"CANCELLED-James R. Thompson Center-Video Conference","Cancelled":"","VC":"","CaseNumber":"R2018-032 ","CaseId":15588,"IsFullDay":false,"CalendarDescription":null},{"CalendarId":26730,"StartDateTime":"12/6/2018 9:00:00 AM","EndDateTime":"12/6/2018 9:00:00 AM","FullName":"Unavailable","CalendarTypeDesc":"Hearing R2018-024 ","Description":"\u003cdiv class=\u0027eventHearing eventDetails\u0027\u003e\r\n\u003cdiv class=\u0027eventHeading\u0027\u003eR2018-024 \u003c/div\u003e\r\n\u003cbr /\u003e\r\n\u003cdiv class=\u0027eventDescription\u0027\u003eIn the Matter of: Amendments to 35 Ill. Adm. Code Subtitle D\u003c/div\u003e\r\n\u003cbr /\u003e\r\n\u003cdiv class=\u0027eventLocation\u0027\u003eJames R. Thompson Center-Video Conference\u003c/div\u003e\r\n\u003cbr /\u003e\r\n\u003ca href=\u0027/Cases/GetCaseDetailsById?caseId=15559\u0027\u003eClick here for details on this case\u003c/a\u003e\r\n\u003c/div\u003e\r\n","Location":"James R. Thompson Center-Video Conference","Cancelled":"","VC":"","CaseNumber":"R2018-024 ","CaseId":15559,"IsFullDay":false,"CalendarDescription":null},{"CalendarId":26731,"StartDateTime":"12/6/2018 9:00:00 AM","EndDateTime":"12/6/2018 9:00:00 AM","FullName":"Unavailable","CalendarTypeDesc":"Hearing R2018-024 ","Description":"\u003cdiv class=\u0027eventHearing eventDetails\u0027\u003e\r\n\u003cdiv class=\u0027eventHeading\u0027\u003eR2018-024 \u003c/div\u003e\r\n\u003cbr /\u003e\r\n\u003cdiv class=\u0027eventDescription\u0027\u003eIn the Matter of: Amendments to 35 Ill. Adm. Code Subtitle D\u003c/div\u003e\r\n\u003cbr /\u003e\r\n\u003cdiv class=\u0027eventLocation\u0027\u003eIllinois Pollution Control Board-Video Conference\u003c/div\u003e\r\n\u003cbr /\u003e\r\n\u003ca href=\u0027/Cases/GetCaseDetailsById?caseId=15559\u0027\u003eClick here for details on this case\u003c/a\u003e\r\n\u003c/div\u003e\r\n","Location":"Illinois Pollution Control Board-Video Conference","Cancelled":"","VC":"","CaseNumber":"R2018-024 ","CaseId":15559,"IsFullDay":false,"CalendarDescription":null},{"CalendarId":26732,"StartDateTime":"12/20/2018 9:00:00 AM","EndDateTime":"12/20/2018 9:00:00 AM","FullName":"Unavailable","CalendarTypeDesc":"Hearing R2018-024 ","Description":"\u003cdiv class=\u0027eventHearing eventDetails\u0027\u003e\r\n\u003cdiv class=\u0027eventHeading\u0027\u003eR2018-024 \u003c/div\u003e\r\n\u003cbr /\u003e\r\n\u003cdiv class=\u0027eventDescription\u0027\u003eIn the Matter of: Amendments to 35 Ill. Adm. Code Subtitle D\u003c/div\u003e\r\n\u003cbr /\u003e\r\n\u003cdiv class=\u0027eventLocation\u0027\u003eJames R. Thompson Center-Video Conference\u003c/div\u003e\r\n\u003cbr /\u003e\r\n\u003ca href=\u0027/Cases/GetCaseDetailsById?caseId=15559\u0027\u003eClick here for details on this case\u003c/a\u003e\r\n\u003c/div\u003e\r\n","Location":"James R. Thompson Center-Video Conference","Cancelled":"","VC":"","CaseNumber":"R2018-024 ","CaseId":15559,"IsFullDay":false,"CalendarDescription":null},{"CalendarId":26733,"StartDateTime":"12/20/2018 9:00:00 AM","EndDateTime":"12/20/2018 9:00:00 AM","FullName":"Unavailable","CalendarTypeDesc":"Hearing R2018-024 ","Description":"\u003cdiv class=\u0027eventHearing eventDetails\u0027\u003e\r\n\u003cdiv class=\u0027eventHeading\u0027\u003eR2018-024 \u003c/div\u003e\r\n\u003cbr /\u003e\r\n\u003cdiv class=\u0027eventDescription\u0027\u003eIn the Matter of: Amendments to 35 Ill. Adm. Code Subtitle D\u003c/div\u003e\r\n\u003cbr /\u003e\r\n\u003cdiv class=\u0027eventLocation\u0027\u003eIllinois Pollution Control Board-Video Conference\u003c/div\u003e\r\n\u003cbr /\u003e\r\n\u003ca href=\u0027/Cases/GetCaseDetailsById?caseId=15559\u0027\u003eClick here for details on this case\u003c/a\u003e\r\n\u003c/div\u003e\r\n","Location":"Illinois Pollution Control Board-Video Conference","Cancelled":"","VC":"","CaseNumber":"R2018-024 ","CaseId":15559,"IsFullDay":false,"CalendarDescription":null},{"CalendarId":26745,"StartDateTime":"12/6/2018 2:00:00 PM","EndDateTime":"12/6/2018 2:00:00 PM","FullName":"Unavailable","CalendarTypeDesc":"Hearing R2018-030 ","Description":"\u003cdiv class=\u0027eventHearing eventDetails\u0027\u003e\r\n\u003cdiv class=\u0027eventHeading\u0027\u003eR2018-030 \u003c/div\u003e\r\n\u003cbr /\u003e\r\n\u003cdiv class=\u0027eventDescription\u0027\u003eIn the Matter of: Amendments to 35 Ill. Adm. Code Subtitle O\u003c/div\u003e\r\n\u003cbr /\u003e\r\n\u003cdiv class=\u0027eventLocation\u0027\u003eJames R. Thompson Center, IPCB Hearing Room\u003c/div\u003e\r\n\u003cbr /\u003e\r\n\u003ca href=\u0027/Cases/GetCaseDetailsById?caseId=15565\u0027\u003eClick here for details on this case\u003c/a\u003e\r\n\u003c/div\u003e\r\n","Location":"James R. Thompson Center, IPCB Hearing Room","Cancelled":"","VC":"","CaseNumber":"R2018-030 ","CaseId":15565,"IsFullDay":false,"CalendarDescription":null},{"CalendarId":26746,"StartDateTime":"12/19/2018 2:00:00 PM","EndDateTime":"12/19/2018 2:00:00 PM","FullName":"Unavailable","CalendarTypeDesc":"Hearing R2018-030 ","Description":"\u003cdiv class=\u0027eventHearing eventDetails\u0027\u003e\r\n\u003cdiv class=\u0027eventHeading\u0027\u003eR2018-030 \u003c/div\u003e\r\n\u003cbr /\u003e\r\n\u003cdiv class=\u0027eventDescription\u0027\u003eIn the Matter of: Amendments to 35 Ill. Adm. Code Subtitle O\u003c/div\u003e\r\n\u003cbr /\u003e\r\n\u003cdiv class=\u0027eventLocation\u0027\u003eJames R. Thompson Center, IPCB Hearing Room\u003c/div\u003e\r\n\u003cbr /\u003e\r\n\u003ca href=\u0027/Cases/GetCaseDetailsById?caseId=15565\u0027\u003eClick here for details on this case\u003c/a\u003e\r\n\u003c/div\u003e\r\n","Location":"James R. Thompson Center, IPCB Hearing Room","Cancelled":"","VC":"","CaseNumber":"R2018-030 ","CaseId":15565,"IsFullDay":false,"CalendarDescription":null},{"CalendarId":26747,"StartDateTime":"12/6/2018 2:00:00 PM","EndDateTime":"12/6/2018 2:00:00 PM","FullName":"Unavailable","CalendarTypeDesc":"Hearing R2018-030 ","Description":"\u003cdiv class=\u0027eventHearing eventDetails\u0027\u003e\r\n\u003cdiv class=\u0027eventHeading\u0027\u003eR2018-030 \u003c/div\u003e\r\n\u003cbr /\u003e\r\n\u003cdiv class=\u0027eventDescription\u0027\u003eIn the Matter of: Amendments to 35 Ill. Adm. Code Subtitle O\u003c/div\u003e\r\n\u003cbr /\u003e\r\n\u003cdiv class=\u0027eventLocation\u0027\u003eIPCB Hearing Room\u003c/div\u003e\r\n\u003cbr /\u003e\r\n\u003ca href=\u0027/Cases/GetCaseDetailsById?caseId=15565\u0027\u003eClick here for details on this case\u003c/a\u003e\r\n\u003c/div\u003e\r\n","Location":"IPCB Hearing Room","Cancelled":"","VC":"","CaseNumber":"R2018-030 ","CaseId":15565,"IsFullDay":false,"CalendarDescription":null},{"CalendarId":26748,"StartDateTime":"12/19/2018 2:00:00 PM","EndDateTime":"12/19/2018 2:00:00 PM","FullName":"Unavailable","CalendarTypeDesc":"Hearing R2018-030 ","Description":"\u003cdiv class=\u0027eventHearing eventDetails\u0027\u003e\r\n\u003cdiv class=\u0027eventHeading\u0027\u003eR2018-030 \u003c/div\u003e\r\n\u003cbr /\u003e\r\n\u003cdiv class=\u0027eventDescription\u0027\u003eIn the Matter of: Amendments to 35 Ill. Adm. Code Subtitle O\u003c/div\u003e\r\n\u003cbr /\u003e\r\n\u003cdiv class=\u0027eventLocation\u0027\u003eIPCB Hearing Room\u003c/div\u003e\r\n\u003cbr /\u003e\r\n\u003ca href=\u0027/Cases/GetCaseDetailsById?caseId=15565\u0027\u003eClick here for details on this case\u003c/a\u003e\r\n\u003c/div\u003e\r\n","Location":"IPCB Hearing Room","Cancelled":"","VC":"","CaseNumber":"R2018-030 ","CaseId":15565,"IsFullDay":false,"CalendarDescription":null},{"CalendarId":26758,"StartDateTime":"1/29/2019 10:00:00 AM","EndDateTime":"1/29/2019 10:00:00 AM","FullName":"Unavailable","CalendarTypeDesc":"Hearing R2018-020 ","Description":"\u003cdiv class=\u0027eventHearing eventDetails\u0027\u003e\r\n\u003cdiv class=\u0027eventHeading\u0027\u003eR2018-020 \u003c/div\u003e\r\n\u003cbr /\u003e\r\n\u003cdiv class=\u0027eventDescription\u0027\u003eAmendments to 35 Ill. Adm. Code 225.233, Multi-Pollutant Standards (MPS)\u003c/div\u003e\r\n\u003cbr /\u003e\r\n\u003cdiv class=\u0027eventLocation\u0027\u003eIllinois Environmental Protection Agency,Sangamo Room \u003c/div\u003e\r\n\u003cbr /\u003e\r\n\u003ca href=\u0027/Cases/GetCaseDetailsById?caseId=15480\u0027\u003eClick here for details on this case\u003c/a\u003e\r\n\u003c/div\u003e\r\n","Location":"Illinois Environmental Protection Agency,Sangamo Room ","Cancelled":"","VC":"","CaseNumber":"R2018-020 ","CaseId":15480,"IsFullDay":false,"CalendarDescription":null},{"CalendarId":26759,"StartDateTime":"1/30/2019 10:00:00 AM","EndDateTime":"1/30/2019 10:00:00 AM","FullName":"Unavailable","CalendarTypeDesc":"Hearing R2018-020 ","Description":"\u003cdiv class=\u0027eventHearing eventDetails\u0027\u003e\r\n\u003cdiv class=\u0027eventHeading\u0027\u003eR2018-020 \u003c/div\u003e\r\n\u003cbr /\u003e\r\n\u003cdiv class=\u0027eventDescription\u0027\u003eAmendments to 35 Ill. Adm. Code 225.233, Multi-Pollutant Standards (MPS)\u003c/div\u003e\r\n\u003cbr /\u003e\r\n\u003cdiv class=\u0027eventLocation\u0027\u003eIllinois Environmental Protection Agency,Sangamo Room \u003c/div\u003e\r\n\u003cbr /\u003e\r\n\u003ca href=\u0027/Cases/GetCaseDetailsById?caseId=15480\u0027\u003eClick here for details on this case\u003c/a\u003e\r\n\u003c/div\u003e\r\n","Location":"Illinois Environmental Protection Agency,Sangamo Room ","Cancelled":"","VC":"","CaseNumber":"R2018-020 ","CaseId":15480,"IsFullDay":false,"CalendarDescription":null},{"CalendarId":26760,"StartDateTime":"1/29/2019 5:30:00 PM","EndDateTime":"1/29/2019 5:30:00 PM","FullName":"Unavailable","CalendarTypeDesc":"Hearing R2018-020 ","Description":"\u003cdiv class=\u0027eventHearing eventDetails\u0027\u003e\r\n\u003cdiv class=\u0027eventHeading\u0027\u003eR2018-020 \u003c/div\u003e\r\n\u003cbr /\u003e\r\n\u003cdiv class=\u0027eventDescription\u0027\u003eAmendments to 35 Ill. Adm. Code 225.233, Multi-Pollutant Standards (MPS)\u003c/div\u003e\r\n\u003cbr /\u003e\r\n\u003cdiv class=\u0027eventLocation\u0027\u003eSangamo Room, Illinois Environmental Protection Agency\u003c/div\u003e\r\n\u003cbr /\u003e\r\n\u003ca href=\u0027/Cases/GetCaseDetailsById?caseId=15480\u0027\u003eClick here for details on this case\u003c/a\u003e\r\n\u003c/div\u003e\r\n","Location":"Sangamo Room, Illinois Environmental Protection Agency","Cancelled":"","VC":"","CaseNumber":"R2018-020 ","CaseId":15480,"IsFullDay":false,"CalendarDescription":null},{"CalendarId":26823,"StartDateTime":"1/8/2019 11:00:00 AM","EndDateTime":"1/8/2019 11:00:00 AM","FullName":"Unavailable","CalendarTypeDesc":"Hearing R2018-020 ","Description":"\u003cdiv class=\u0027eventHearing eventDetails\u0027\u003e\r\n\u003cdiv class=\u0027eventHeading\u0027\u003eR2018-020 \u003c/div\u003e\r\n\u003cbr /\u003e\r\n\u003cdiv class=\u0027eventDescription\u0027\u003eAmendments to 35 Ill. Adm. Code 225.233, Multi-Pollutant Standards (MPS)\u003c/div\u003e\r\n\u003cbr /\u003e\r\n\u003cdiv class=\u0027eventLocation\u0027\u003ePREHEARING VIDEO AND TELECONFERENCE\u003c/div\u003e\r\n\u003cbr /\u003e\r\n\u003ca href=\u0027/Cases/GetCaseDetailsById?caseId=15480\u0027\u003eClick here for details on this case\u003c/a\u003e\r\n\u003c/div\u003e\r\n","Location":"PREHEARING VIDEO AND TELECONFERENCE","Cancelled":"","VC":"","CaseNumber":"R2018-020 ","CaseId":15480,"IsFullDay":false,"CalendarDescription":null},{"CalendarId":26824,"StartDateTime":"1/8/2019 11:00:00 AM","EndDateTime":"1/8/2019 11:00:00 AM","FullName":"Unavailable","CalendarTypeDesc":"Hearing R2018-020 ","Description":"\u003cdiv class=\u0027eventHearing eventDetails\u0027\u003e\r\n\u003cdiv class=\u0027eventHeading\u0027\u003eR2018-020 \u003c/div\u003e\r\n\u003cbr /\u003e\r\n\u003cdiv class=\u0027eventDescription\u0027\u003eAmendments to 35 Ill. Adm. Code 225.233, Multi-Pollutant Standards (MPS)\u003c/div\u003e\r\n\u003cbr /\u003e\r\n\u003cdiv class=\u0027eventLocation\u0027\u003ePREHEARING VIDEO AND TELECONFERENCE\u003c/div\u003e\r\n\u003cbr /\u003e\r\n\u003ca href=\u0027/Cases/GetCaseDetailsById?caseId=15480\u0027\u003eClick here for details on this case\u003c/a\u003e\r\n\u003c/div\u003e\r\n","Location":"PREHEARING VIDEO AND TELECONFERENCE","Cancelled":"","VC":"","CaseNumber":"R2018-020 ","CaseId":15480,"IsFullDay":false,"CalendarDescription":null},{"CalendarId":26838,"StartDateTime":"12/11/2018 10:00:00 AM","EndDateTime":"12/11/2018 10:00:00 AM","FullName":"Unavailable","CalendarTypeDesc":"Hearing R2019-001 ","Description":"\u003cdiv class=\u0027eventHearing eventDetails\u0027\u003e\r\n\u003cdiv class=\u0027eventHeading\u0027\u003eR2019-001 \u003c/div\u003e\r\n\u003cbr /\u003e\r\n\u003cdiv class=\u0027eventDescription\u0027\u003eProposed New 35 Ill. Adm. Code 204, Prevention of Significant Deterioration, Amendments To 35 Ill. Adm. Code Parts 101, 105, 203, 211, And 215\u003c/div\u003e\r\n\u003cbr /\u003e\r\n\u003cdiv class=\u0027eventLocation\u0027\u003ePREHEARING VIDEO AND TELECONFERENCE\u003c/div\u003e\r\n\u003cbr /\u003e\r\n\u003ca href=\u0027/Cases/GetCaseDetailsById?caseId=15596\u0027\u003eClick here for details on this case\u003c/a\u003e\r\n\u003c/div\u003e\r\n","Location":"PREHEARING VIDEO AND TELECONFERENCE","Cancelled":"","VC":"","CaseNumber":"R2019-001 ","CaseId":15596,"IsFullDay":false,"CalendarDescription":null},{"CalendarId":26841,"StartDateTime":"12/11/2018 10:00:00 AM","EndDateTime":"12/11/2018 10:00:00 AM","FullName":"Unavailable","CalendarTypeDesc":"Hearing R2019-001 ","Description":"\u003cdiv class=\u0027eventHearing eventDetails\u0027\u003e\r\n\u003cdiv class=\u0027eventHeading\u0027\u003eR2019-001 \u003c/div\u003e\r\n\u003cbr /\u003e\r\n\u003cdiv class=\u0027eventDescription\u0027\u003eProposed New 35 Ill. Adm. Code 204, Prevention of Significant Deterioration, Amendments To 35 Ill. Adm. Code Parts 101, 105, 203, 211, And 215\u003c/div\u003e\r\n\u003cbr /\u003e\r\n\u003cdiv class=\u0027eventLocation\u0027\u003ePREHEARING VIDEO AND TELECONFERENCE\u003c/div\u003e\r\n\u003cbr /\u003e\r\n\u003ca href=\u0027/Cases/GetCaseDetailsById?caseId=15596\u0027\u003eClick here for details on this case\u003c/a\u003e\r\n\u003c/div\u003e\r\n","Location":"PREHEARING VIDEO AND TELECONFERENCE","Cancelled":"","VC":"","CaseNumber":"R2019-001 ","CaseId":15596,"IsFullDay":false,"CalendarDescription":null},{"CalendarId":26842,"StartDateTime":"1/10/2019 11:30:00 AM","EndDateTime":"1/10/2019 11:30:00 AM","FullName":"Unavailable","CalendarTypeDesc":"Hearing R2019-006 ","Description":"\u003cdiv class=\u0027eventHearing eventDetails\u0027\u003e\r\n\u003cdiv class=\u0027eventHeading\u0027\u003eR2019-006 \u003c/div\u003e\r\n\u003cbr /\u003e\r\n\u003cdiv class=\u0027eventDescription\u0027\u003eNational Ambient Air Quality Standards, USEPA Regulations (January 1, 2018 through June 30, 2018)\u003c/div\u003e\r\n\u003cbr /\u003e\r\n\u003cdiv class=\u0027eventLocation\u0027\u003eJames T. Thompson Center\u003c/div\u003e\r\n\u003cbr /\u003e\r\n\u003ca href=\u0027/Cases/GetCaseDetailsById?caseId=15607\u0027\u003eClick here for details on this case\u003c/a\u003e\r\n\u003c/div\u003e\r\n","Location":"James T. Thompson Center","Cancelled":"","VC":"","CaseNumber":"R2019-006 ","CaseId":15607,"IsFullDay":false,"CalendarDescription":null},{"CalendarId":26845,"StartDateTime":"1/10/2019 11:30:00 AM","EndDateTime":"1/10/2019 11:30:00 AM","FullName":"Unavailable","CalendarTypeDesc":"Hearing R2019-006 ","Description":"\u003cdiv class=\u0027eventHearing eventDetails\u0027\u003e\r\n\u003cdiv class=\u0027eventHeading\u0027\u003eR2019-006 \u003c/div\u003e\r\n\u003cbr /\u003e\r\n\u003cdiv class=\u0027eventDescription\u0027\u003eNational Ambient Air Quality Standards, USEPA Regulations (January 1, 2018 through June 30, 2018)\u003c/div\u003e\r\n\u003cbr /\u003e\r\n\u003cdiv class=\u0027eventLocation\u0027\u003eSangamo Building\u003c/div\u003e\r\n\u003cbr /\u003e\r\n\u003ca href=\u0027/Cases/GetCaseDetailsById?caseId=15607\u0027\u003eClick here for details on this case\u003c/a\u003e\r\n\u003c/div\u003e\r\n","Location":"Sangamo Building","Cancelled":"","VC":"","CaseNumber":"R2019-006 ","CaseId":15607,"IsFullDay":false,"CalendarDescription":null},{"CalendarId":26885,"StartDateTime":"2/26/2019 10:00:00 AM","EndDateTime":"2/26/2019 10:00:00 AM","FullName":"Unavailable","CalendarTypeDesc":"Hearing R2019-001 ","Description":"\u003cdiv class=\u0027eventHearing eventDetails\u0027\u003e\r\n\u003cdiv class=\u0027eventHeading\u0027\u003eR2019-001 \u003c/div\u003e\r\n\u003cbr /\u003e\r\n\u003cdiv class=\u0027eventDescription\u0027\u003eProposed New 35 Ill. Adm. Code 204, Prevention of Significant Deterioration, Amendments To 35 Ill. Adm. Code Parts 101, 105, 203, 211, And 215\u003c/div\u003e\r\n\u003cbr /\u003e\r\n\u003cdiv class=\u0027eventLocation\u0027\u003eJames R. Thompson Center-Video Conference\u003c/div\u003e\r\n\u003cbr /\u003e\r\n\u003ca href=\u0027/Cases/GetCaseDetailsById?caseId=15596\u0027\u003eClick here for details on this case\u003c/a\u003e\r\n\u003c/div\u003e\r\n","Location":"James R. Thompson Center-Video Conference","Cancelled":"","VC":"","CaseNumber":"R2019-001 ","CaseId":15596,"IsFullDay":false,"CalendarDescription":null},{"CalendarId":26886,"StartDateTime":"2/27/2019 9:00:00 AM","EndDateTime":"2/27/2019 9:00:00 AM","FullName":"Unavailable","CalendarTypeDesc":"Hearing R2019-001 ","Description":"\u003cdiv class=\u0027eventHearing eventDetails\u0027\u003e\r\n\u003cdiv class=\u0027eventHeading\u0027\u003eR2019-001 \u003c/div\u003e\r\n\u003cbr /\u003e\r\n\u003cdiv class=\u0027eventDescription\u0027\u003eProposed New 35 Ill. Adm. Code 204, Prevention of Significant Deterioration, Amendments To 35 Ill. Adm. Code Parts 101, 105, 203, 211, And 215\u003c/div\u003e\r\n\u003cbr /\u003e\r\n\u003cdiv class=\u0027eventLocation\u0027\u003eCANCELLED-James R. Thompson Center-Video Conference\u003c/div\u003e\r\n\u003cbr /\u003e\r\n\u003ca href=\u0027/Cases/GetCaseDetailsById?caseId=15596\u0027\u003eClick here for details on this case\u003c/a\u003e\r\n\u003c/div\u003e\r\n","Location":"CANCELLED-James R. Thompson Center-Video Conference","Cancelled":"","VC":"","CaseNumber":"R2019-001 ","CaseId":15596,"IsFullDay":false,"CalendarDescription":null},{"CalendarId":26888,"StartDateTime":"2/26/2019 10:00:00 AM","EndDateTime":"2/26/2019 10:00:00 AM","FullName":"Unavailable","CalendarTypeDesc":"Hearing R2019-001 ","Description":"\u003cdiv class=\u0027eventHearing eventDetails\u0027\u003e\r\n\u003cdiv class=\u0027eventHeading\u0027\u003eR2019-001 \u003c/div\u003e\r\n\u003cbr /\u003e\r\n\u003cdiv class=\u0027eventDescription\u0027\u003eProposed New 35 Ill. Adm. Code 204, Prevention of Significant Deterioration, Amendments To 35 Ill. Adm. Code Parts 101, 105, 203, 211, And 215\u003c/div\u003e\r\n\u003cbr /\u003e\r\n\u003cdiv class=\u0027eventLocation\u0027\u003eIPCB Springfield Hearing Room\u003c/div\u003e\r\n\u003cbr /\u003e\r\n\u003ca href=\u0027/Cases/GetCaseDetailsById?caseId=15596\u0027\u003eClick here for details on this case\u003c/a\u003e\r\n\u003c/div\u003e\r\n","Location":"IPCB Springfield Hearing Room","Cancelled":"","VC":"","CaseNumber":"R2019-001 ","CaseId":15596,"IsFullDay":false,"CalendarDescription":null},{"CalendarId":26889,"StartDateTime":"2/27/2019 9:00:00 AM","EndDateTime":"2/27/2019 9:00:00 AM","FullName":"Unavailable","CalendarTypeDesc":"Hearing R2019-001 ","Description":"\u003cdiv class=\u0027eventHearing eventDetails\u0027\u003e\r\n\u003cdiv class=\u0027eventHeading\u0027\u003eR2019-001 \u003c/div\u003e\r\n\u003cbr /\u003e\r\n\u003cdiv class=\u0027eventDescription\u0027\u003eProposed New 35 Ill. Adm. Code 204, Prevention of Significant Deterioration, Amendments To 35 Ill. Adm. Code Parts 101, 105, 203, 211, And 215\u003c/div\u003e\r\n\u003cbr /\u003e\r\n\u003cdiv class=\u0027eventLocation\u0027\u003eCANCELLED-IPCB Springfield Hearing Room\u003c/div\u003e\r\n\u003cbr /\u003e\r\n\u003ca href=\u0027/Cases/GetCaseDetailsById?caseId=15596\u0027\u003eClick here for details on this case\u003c/a\u003e\r\n\u003c/div\u003e\r\n","Location":"CANCELLED-IPCB Springfield Hearing Room","Cancelled":"","VC":"","CaseNumber":"R2019-001 ","CaseId":15596,"IsFullDay":false,"CalendarDescription":null},{"CalendarId":26937,"StartDateTime":"2/28/2019 2:00:00 PM","EndDateTime":"2/28/2019 2:00:00 PM","FullName":"Unavailable","CalendarTypeDesc":"Hearing R2018-032 ","Description":"\u003cdiv class=\u0027eventHearing eventDetails\u0027\u003e\r\n\u003cdiv class=\u0027eventHeading\u0027\u003eR2018-032 \u003c/div\u003e\r\n\u003cbr /\u003e\r\n\u003cdiv class=\u0027eventDescription\u0027\u003eIn the Matter of: Amendments to General Use Water Quality Standards for Chloride\u003c/div\u003e\r\n\u003cbr /\u003e\r\n\u003cdiv class=\u0027eventLocation\u0027\u003ePREHEARING VIDEO AND TELECONFERENCE\u003c/div\u003e\r\n\u003cbr /\u003e\r\n\u003ca href=\u0027/Cases/GetCaseDetailsById?caseId=15588\u0027\u003eClick here for details on this case\u003c/a\u003e\r\n\u003c/div\u003e\r\n","Location":"PREHEARING VIDEO AND TELECONFERENCE","Cancelled":"","VC":"","CaseNumber":"R2018-032 ","CaseId":15588,"IsFullDay":false,"CalendarDescription":null},{"CalendarId":26938,"StartDateTime":"2/28/2019 2:00:00 PM","EndDateTime":"2/28/2019 2:00:00 PM","FullName":"Unavailable","CalendarTypeDesc":"Hearing R2018-032 ","Description":"\u003cdiv class=\u0027eventHearing eventDetails\u0027\u003e\r\n\u003cdiv class=\u0027eventHeading\u0027\u003eR2018-032 \u003c/div\u003e\r\n\u003cbr /\u003e\r\n\u003cdiv class=\u0027eventDescription\u0027\u003eIn the Matter of: Amendments to General Use Water Quality Standards for Chloride\u003c/div\u003e\r\n\u003cbr /\u003e\r\n\u003cdiv class=\u0027eventLocation\u0027\u003ePREHEARING VIDEO AND TELECONFERENCE\u003c/div\u003e\r\n\u003cbr /\u003e\r\n\u003ca href=\u0027/Cases/GetCaseDetailsById?caseId=15588\u0027\u003eClick here for details on this case\u003c/a\u003e\r\n\u003c/div\u003e\r\n","Location":"PREHEARING VIDEO AND TELECONFERENCE","Cancelled":"","VC":"","CaseNumber":"R2018-032 ","CaseId":15588,"IsFullDay":false,"CalendarDescription":null},{"CalendarId":27004,"StartDateTime":"5/9/2019 1:00:00 PM","EndDateTime":"5/9/2019 1:00:00 PM","FullName":"Unavailable","CalendarTypeDesc":"Hearing R2019-018 ","Description":"\u003cdiv class=\u0027eventHearing eventDetails\u0027\u003e\r\n\u003cdiv class=\u0027eventHeading\u0027\u003eR2019-018 \u003c/div\u003e\r\n\u003cbr /\u003e\r\n\u003cdiv class=\u0027eventDescription\u0027\u003eIn the Matter of: Amendments to Manifesting Requirements: Special Waste Hauling 35 Ill. Adm. Code 809\u003c/div\u003e\r\n\u003cbr /\u003e\r\n\u003cdiv class=\u0027eventLocation\u0027\u003eJames R. ThompsonCenter\u003c/div\u003e\r\n\u003cbr /\u003e\r\n\u003ca href=\u0027/Cases/GetCaseDetailsById?caseId=16703\u0027\u003eClick here for details on this case\u003c/a\u003e\r\n\u003c/div\u003e\r\n","Location":"James R. ThompsonCenter","Cancelled":"","VC":"","CaseNumber":"R2019-018 ","CaseId":16703,"IsFullDay":false,"CalendarDescription":null},{"CalendarId":27005,"StartDateTime":"5/9/2019 1:00:00 PM","EndDateTime":"5/9/2019 1:00:00 PM","FullName":"Unavailable","CalendarTypeDesc":"Hearing R2019-018 ","Description":"\u003cdiv class=\u0027eventHearing eventDetails\u0027\u003e\r\n\u003cdiv class=\u0027eventHeading\u0027\u003eR2019-018 \u003c/div\u003e\r\n\u003cbr /\u003e\r\n\u003cdiv class=\u0027eventDescription\u0027\u003eIn the Matter of: Amendments to Manifesting Requirements: Special Waste Hauling 35 Ill. Adm. Code 809\u003c/div\u003e\r\n\u003cbr /\u003e\r\n\u003cdiv class=\u0027eventLocation\u0027\u003eIllinois Pollution Control Board\u003c/div\u003e\r\n\u003cbr /\u003e\r\n\u003ca href=\u0027/Cases/GetCaseDetailsById?caseId=16703\u0027\u003eClick here for details on this case\u003c/a\u003e\r\n\u003c/div\u003e\r\n","Location":"Illinois Pollution Control Board","Cancelled":"","VC":"","CaseNumber":"R2019-018 ","CaseId":16703,"IsFullDay":false,"CalendarDescription":null},{"CalendarId":27006,"StartDateTime":"6/6/2019 1:00:00 PM","EndDateTime":"6/6/2019 1:00:00 PM","FullName":"Unavailable","CalendarTypeDesc":"Hearing R2019-018 ","Description":"\u003cdiv class=\u0027eventHearing eventDetails\u0027\u003e\r\n\u003cdiv class=\u0027eventHeading\u0027\u003eR2019-018 \u003c/div\u003e\r\n\u003cbr /\u003e\r\n\u003cdiv class=\u0027eventDescription\u0027\u003eIn the Matter of: Amendments to Manifesting Requirements: Special Waste Hauling 35 Ill. Adm. Code 809\u003c/div\u003e\r\n\u003cbr /\u003e\r\n\u003cdiv class=\u0027eventLocation\u0027\u003eJames R. Thompson Center\u003c/div\u003e\r\n\u003cbr /\u003e\r\n\u003ca href=\u0027/Cases/GetCaseDetailsById?caseId=16703\u0027\u003eClick here for details on this case\u003c/a\u003e\r\n\u003c/div\u003e\r\n","Location":"James R. Thompson Center","Cancelled":"","VC":"","CaseNumber":"R2019-018 ","CaseId":16703,"IsFullDay":false,"CalendarDescription":null},{"CalendarId":27007,"StartDateTime":"6/6/2019 1:00:00 PM","EndDateTime":"6/6/2019 1:00:00 PM","FullName":"Unavailable","CalendarTypeDesc":"Hearing R2019-018 ","Description":"\u003cdiv class=\u0027eventHearing eventDetails\u0027\u003e\r\n\u003cdiv class=\u0027eventHeading\u0027\u003eR2019-018 \u003c/div\u003e\r\n\u003cbr /\u003e\r\n\u003cdiv class=\u0027eventDescription\u0027\u003eIn the Matter of: Amendments to Manifesting Requirements: Special Waste Hauling 35 Ill. Adm. Code 809\u003c/div\u003e\r\n\u003cbr /\u003e\r\n\u003cdiv class=\u0027eventLocation\u0027\u003eIllinois Pollution Control Board\u003c/div\u003e\r\n\u003cbr /\u003e\r\n\u003ca href=\u0027/Cases/GetCaseDetailsById?caseId=16703\u0027\u003eClick here for details on this case\u003c/a\u003e\r\n\u003c/div\u003e\r\n","Location":"Illinois Pollution Control Board","Cancelled":"","VC":"","CaseNumber":"R2019-018 ","CaseId":16703,"IsFullDay":false,"CalendarDescription":null},{"CalendarId":27057,"StartDateTime":"6/5/2019 10:00:00 AM","EndDateTime":"6/5/2019 10:00:00 AM","FullName":"Unavailable","CalendarTypeDesc":"Hearing PCB 2018-083 ","Description":"\u003cdiv class=\u0027eventHearing eventDetails\u0027\u003e\r\n\u003cdiv class=\u0027eventHeading\u0027\u003ePCB 2018-083 \u003c/div\u003e\r\n\u003cbr /\u003e\r\n\u003cdiv class=\u0027eventDescription\u0027\u003eJohn D. Warsaw v. IEPA\u003c/div\u003e\r\n\u003cbr /\u003e\r\n\u003cdiv class=\u0027eventLocation\u0027\u003eJustice Center Community Room\u003c/div\u003e\r\n\u003cbr /\u003e\r\n\u003ca href=\u0027/Cases/GetCaseDetailsById?caseId=15594\u0027\u003eClick here for details on this case\u003c/a\u003e\r\n\u003c/div\u003e\r\n","Location":"Justice Center Community Room","Cancelled":"","VC":"","CaseNumber":"PCB 2018-083 ","CaseId":15594,"IsFullDay":false,"CalendarDescription":null},{"CalendarId":27205,"StartDateTime":"10/10/2019 9:00:00 AM","EndDateTime":"10/10/2019 9:00:00 AM","FullName":"Unavailable","CalendarTypeDesc":"Hearing PCB 2012-035 ","Description":"\u003cdiv class=\u0027eventHearing eventDetails\u0027\u003e\r\n\u003cdiv class=\u0027eventHeading\u0027\u003ePCB 2012-035 \u003c/div\u003e\r\n\u003cbr /\u003e\r\n\u003cdiv class=\u0027eventDescription\u0027\u003ePeople of the State of Illinois v. Six M. Corporation, Inc., an Illinois corporation, Thomas Maxwell, and Joinder of James McIlvain as Necessary Party\u003c/div\u003e\r\n\u003cbr /\u003e\r\n\u003cdiv class=\u0027eventLocation\u0027\u003eCANCELLED-DeWitt County Board Room\u003c/div\u003e\r\n\u003cbr /\u003e\r\n\u003ca href=\u0027/Cases/GetCaseDetailsById?caseId=14216\u0027\u003eClick here for details on this case\u003c/a\u003e\r\n\u003c/div\u003e\r\n","Location":"CANCELLED-DeWitt County Board Room","Cancelled":"","VC":"","CaseNumber":"PCB 2012-035 ","CaseId":14216,"IsFullDay":false,"CalendarDescription":null},{"CalendarId":27264,"StartDateTime":"11/19/2019 9:00:00 AM","EndDateTime":"11/19/2019 9:00:00 AM","FullName":"Unavailable","CalendarTypeDesc":"Hearing PCB 2014-003 ","Description":"\u003cdiv class=\u0027eventHearing eventDetails\u0027\u003e\r\n\u003cdiv class=\u0027eventHeading\u0027\u003ePCB 2014-003 \u003c/div\u003e\r\n\u003cbr /\u003e\r\n\u003cdiv class=\u0027eventDescription\u0027\u003eJohns Manville, a Delaware corporation, v. Illinois Department of Transportation\u003c/div\u003e\r\n\u003cbr /\u003e\r\n\u003cdiv class=\u0027eventLocation\u0027\u003eJames R. Thompson Center\u003c/div\u003e\r\n\u003cbr /\u003e\r\n\u003ca href=\u0027/Cases/GetCaseDetailsById?caseId=14657\u0027\u003eClick here for details on this case\u003c/a\u003e\r\n\u003c/div\u003e\r\n","Location":"James R. Thompson Center","Cancelled":"","VC":"","CaseNumber":"PCB 2014-003 ","CaseId":14657,"IsFullDay":false,"CalendarDescription":null},{"CalendarId":27265,"StartDateTime":"11/20/2019 9:00:00 AM","EndDateTime":"11/20/2019 9:00:00 AM","FullName":"Unavailable","CalendarTypeDesc":"Hearing PCB 2014-003 ","Description":"\u003cdiv class=\u0027eventHearing eventDetails\u0027\u003e\r\n\u003cdiv class=\u0027eventHeading\u0027\u003ePCB 2014-003 \u003c/div\u003e\r\n\u003cbr /\u003e\r\n\u003cdiv class=\u0027eventDescription\u0027\u003eJohns Manville, a Delaware corporation, v. Illinois Department of Transportation\u003c/div\u003e\r\n\u003cbr /\u003e\r\n\u003cdiv class=\u0027eventLocation\u0027\u003eJames R. Thompson Center\u003c/div\u003e\r\n\u003cbr /\u003e\r\n\u003ca href=\u0027/Cases/GetCaseDetailsById?caseId=14657\u0027\u003eClick here for details on this case\u003c/a\u003e\r\n\u003c/div\u003e\r\n","Location":"James R. Thompson Center","Cancelled":"","VC":"","CaseNumber":"PCB 2014-003 ","CaseId":14657,"IsFullDay":false,"CalendarDescription":null},{"CalendarId":27266,"StartDateTime":"11/21/2019 9:00:00 AM","EndDateTime":"11/21/2019 9:00:00 AM","FullName":"Unavailable","CalendarTypeDesc":"Hearing PCB 2014-003 ","Description":"\u003cdiv class=\u0027eventHearing eventDetails\u0027\u003e\r\n\u003cdiv class=\u0027eventHeading\u0027\u003ePCB 2014-003 \u003c/div\u003e\r\n\u003cbr /\u003e\r\n\u003cdiv class=\u0027eventDescription\u0027\u003eJohns Manville, a Delaware corporation, v. Illinois Department of Transportation\u003c/div\u003e\r\n\u003cbr /\u003e\r\n\u003cdiv class=\u0027eventLocation\u0027\u003eJames R. Thompson Center\u003c/div\u003e\r\n\u003cbr /\u003e\r\n\u003ca href=\u0027/Cases/GetCaseDetailsById?caseId=14657\u0027\u003eClick here for details on this case\u003c/a\u003e\r\n\u003c/div\u003e\r\n","Location":"James R. Thompson Center","Cancelled":"","VC":"","CaseNumber":"PCB 2014-003 ","CaseId":14657,"IsFullDay":false,"CalendarDescription":null},{"CalendarId":27267,"StartDateTime":"11/22/2019 9:00:00 AM","EndDateTime":"11/22/2019 9:00:00 AM","FullName":"Unavailable","CalendarTypeDesc":"Hearing PCB 2014-003 ","Description":"\u003cdiv class=\u0027eventHearing eventDetails\u0027\u003e\r\n\u003cdiv class=\u0027eventHeading\u0027\u003ePCB 2014-003 \u003c/div\u003e\r\n\u003cbr /\u003e\r\n\u003cdiv class=\u0027eventDescription\u0027\u003eJohns Manville, a Delaware corporation, v. Illinois Department of Transportation\u003c/div\u003e\r\n\u003cbr /\u003e\r\n\u003cdiv class=\u0027eventLocation\u0027\u003eJames R. Thompson Center\u003c/div\u003e\r\n\u003cbr /\u003e\r\n\u003ca href=\u0027/Cases/GetCaseDetailsById?caseId=14657\u0027\u003eClick here for details on this case\u003c/a\u003e\r\n\u003c/div\u003e\r\n","Location":"James R. Thompson Center","Cancelled":"","VC":"","CaseNumber":"PCB 2014-003 ","CaseId":14657,"IsFullDay":false,"CalendarDescription":null}] \ No newline at end of file +[{"CalendarId":1016,"StartDateTime":"7/4/2023 12:00:00 AM","EndDateTime":"7/4/2023 12:00:00 AM","FullName":"Don Brown","CalendarTypeDesc":"Holiday","Description":"\u003cdiv class=\u0027eventHoliday eventDetails\u0027\u003e\r\nIndependence Day - Board Closed\u003cbr /\u003e\r\n\u003c/div\u003e\r\n","Location":"","Cancelled":"","VC":"N","CaseNumber":"N/A","CaseId":0,"IsFullDay":false,"CalendarDescription":null},{"CalendarId":1017,"StartDateTime":"9/4/2023 12:00:00 AM","EndDateTime":"9/4/2023 12:00:00 AM","FullName":"Don Brown","CalendarTypeDesc":"Holiday","Description":"\u003cdiv class=\u0027eventHoliday eventDetails\u0027\u003e\r\nLabor Day - Board Closed\u003cbr /\u003e\r\n\u003c/div\u003e\r\n","Location":"","Cancelled":"","VC":"N","CaseNumber":"N/A","CaseId":0,"IsFullDay":false,"CalendarDescription":null},{"CalendarId":1005,"StartDateTime":"11/10/2023 12:00:00 AM","EndDateTime":"11/10/2023 12:00:00 AM","FullName":"Don Brown","CalendarTypeDesc":"Holiday","Description":"\u003cdiv class=\u0027eventHoliday eventDetails\u0027\u003e\r\nVeterans\u0027 Day - Board Closed - Board Closed\u003cbr /\u003e\r\n\u003c/div\u003e\r\n","Location":"","Cancelled":"","VC":"N","CaseNumber":"N/A","CaseId":0,"IsFullDay":false,"CalendarDescription":null},{"CalendarId":1006,"StartDateTime":"11/23/2023 12:00:00 AM","EndDateTime":"11/23/2023 12:00:00 AM","FullName":"Don Brown","CalendarTypeDesc":"Holiday","Description":"\u003cdiv class=\u0027eventHoliday eventDetails\u0027\u003e\r\nThanksgiving - Board Closed - Board Closed\u003cbr /\u003e\r\n\u003c/div\u003e\r\n","Location":"","Cancelled":"","VC":"N","CaseNumber":"N/A","CaseId":0,"IsFullDay":false,"CalendarDescription":null},{"CalendarId":1007,"StartDateTime":"11/24/2023 12:00:00 AM","EndDateTime":"11/24/2023 12:00:00 AM","FullName":"Don Brown","CalendarTypeDesc":"Holiday","Description":"\u003cdiv class=\u0027eventHoliday eventDetails\u0027\u003e\r\nThanksgiving - Board Closed - Board Closed\u003cbr /\u003e\r\n\u003c/div\u003e\r\n","Location":"","Cancelled":"","VC":"N","CaseNumber":"N/A","CaseId":0,"IsFullDay":false,"CalendarDescription":null},{"CalendarId":1008,"StartDateTime":"12/25/2023 12:00:00 AM","EndDateTime":"12/25/2023 12:00:00 AM","FullName":"Don Brown","CalendarTypeDesc":"Holiday","Description":"\u003cdiv class=\u0027eventHoliday eventDetails\u0027\u003e\r\nChristmas - Board Closed - Board Closed\u003cbr /\u003e\r\n\u003c/div\u003e\r\n","Location":"","Cancelled":"","VC":"N","CaseNumber":"N/A","CaseId":0,"IsFullDay":false,"CalendarDescription":null},{"CalendarId":1018,"StartDateTime":"10/9/2023 12:00:00 AM","EndDateTime":"10/9/2023 12:00:00 AM","FullName":"Don Brown","CalendarTypeDesc":"Holiday","Description":"\u003cdiv class=\u0027eventHoliday eventDetails\u0027\u003e\r\nColumbus Day - Board Closed\u003cbr /\u003e\r\n\u003c/div\u003e\r\n","Location":"","Cancelled":"","VC":"N","CaseNumber":"N/A","CaseId":0,"IsFullDay":false,"CalendarDescription":null},{"CalendarId":1019,"StartDateTime":"5/29/2023 12:00:00 AM","EndDateTime":"5/29/2023 12:00:00 AM","FullName":"Don Brown","CalendarTypeDesc":"Holiday","Description":"\u003cdiv class=\u0027eventHoliday eventDetails\u0027\u003e\r\nMemorial Day - Board Closed\u003cbr /\u003e\r\n\u003c/div\u003e\r\n","Location":"","Cancelled":"","VC":"N","CaseNumber":"N/A","CaseId":0,"IsFullDay":false,"CalendarDescription":null},{"CalendarId":1020,"StartDateTime":"6/19/2023 12:00:00 AM","EndDateTime":"6/19/2023 12:00:00 AM","FullName":"Don Brown","CalendarTypeDesc":"Holiday","Description":"\u003cdiv class=\u0027eventHoliday eventDetails\u0027\u003e\r\nJuneteenth - Board Closed\u003cbr /\u003e\r\n\u003c/div\u003e\r\n","Location":"","Cancelled":"","VC":"N","CaseNumber":"N/A","CaseId":0,"IsFullDay":false,"CalendarDescription":null},{"CalendarId":1033,"StartDateTime":"5/18/2023 11:00:00 AM","EndDateTime":"5/18/2023 11:00:00 AM","FullName":"Don Brown","CalendarTypeDesc":"Board Meeting","Description":"\u003cdiv class=\u0027eventBoardMeeting eventDetails\u0027\u003e\r\n\u003cdiv class=\u0027eventHeading\u0027\u003eBoard Meeting\u003c/div\u003e\r\n\u003cdiv class=\u0027eventLocation\u0027\u003eIPCB Office \n1021 N Grand Ave E - Room 1244 N (First Floor)\nSpringfield, Illinois\n- and -\nMICHAEL A BILANDIC BUILDING\n160 N. LASALLE - Room N505\nChicago, Illinois\n\u003c/div\u003e\r\n\u003c/div\u003e\r\n","Location":"IPCB Office \n1021 N Grand Ave E - Room 1244 N (First Floor)\nSpringfield, Illinois\n- and -\nMICHAEL A BILANDIC BUILDING\n160 N. LASALLE - Room N505\nChicago, Illinois\n","Cancelled":"","VC":"V","CaseNumber":"N/A","CaseId":0,"IsFullDay":false,"CalendarDescription":null},{"CalendarId":1035,"StartDateTime":"6/15/2023 11:00:00 AM","EndDateTime":"6/15/2023 11:00:00 AM","FullName":"Don Brown","CalendarTypeDesc":"Board Meeting","Description":"\u003cdiv class=\u0027eventBoardMeeting eventDetails\u0027\u003e\r\n\u003cdiv class=\u0027eventHeading\u0027\u003eBoard Meeting\u003c/div\u003e\r\n\u003cdiv class=\u0027eventLocation\u0027\u003eIPCB Office \n1021 N Grand Ave E - Room 1244 N (First Floor)\nSpringfield, Illinois\n- and -\nMICHAEL A BILANDIC BUILDING\n160 N. LASALLE - Room N505\nChicago, Illinois\n\u003c/div\u003e\r\n\u003c/div\u003e\r\n","Location":"IPCB Office \n1021 N Grand Ave E - Room 1244 N (First Floor)\nSpringfield, Illinois\n- and -\nMICHAEL A BILANDIC BUILDING\n160 N. LASALLE - Room N505\nChicago, Illinois\n","Cancelled":"","VC":"V","CaseNumber":"N/A","CaseId":0,"IsFullDay":false,"CalendarDescription":null},{"CalendarId":1036,"StartDateTime":"7/6/2023 11:00:00 AM","EndDateTime":"7/6/2023 11:00:00 AM","FullName":"Don Brown","CalendarTypeDesc":"Board Meeting","Description":"\u003cdiv class=\u0027eventBoardMeeting eventDetails\u0027\u003e\r\n\u003cdiv class=\u0027eventHeading\u0027\u003eBoard Meeting\u003c/div\u003e\r\n\u003cdiv class=\u0027eventLocation\u0027\u003eIPCB Office 1021 N Grand Ave E - Room 1244 N (First Floor) Springfield, Illinois - and - MICHAEL A BILANDIC BUILDING 160 N. LASALLE - Room N502 Chicago, Illinois\n\u003c/div\u003e\r\n\u003c/div\u003e\r\n","Location":"IPCB Office 1021 N Grand Ave E - Room 1244 N (First Floor) Springfield, Illinois - and - MICHAEL A BILANDIC BUILDING 160 N. LASALLE - Room N502 Chicago, Illinois\n","Cancelled":"","VC":"V","CaseNumber":"N/A","CaseId":0,"IsFullDay":false,"CalendarDescription":null},{"CalendarId":1037,"StartDateTime":"7/20/2023 11:00:00 AM","EndDateTime":"7/20/2023 11:00:00 AM","FullName":"Don Brown","CalendarTypeDesc":"Board Meeting","Description":"\u003cdiv class=\u0027eventBoardMeeting eventDetails\u0027\u003e\r\n\u003cdiv class=\u0027eventHeading\u0027\u003eBoard Meeting\u003c/div\u003e\r\n\u003cdiv class=\u0027eventLocation\u0027\u003eIPCB Office 1021 N Grand Ave E - Room 1244 N (First Floor) Springfield, Illinois - and - MICHAEL A BILANDIC BUILDING 160 N. LASALLE - Room N502 Chicago, Illinois\u003c/div\u003e\r\n\u003c/div\u003e\r\n","Location":"IPCB Office 1021 N Grand Ave E - Room 1244 N (First Floor) Springfield, Illinois - and - MICHAEL A BILANDIC BUILDING 160 N. LASALLE - Room N502 Chicago, Illinois","Cancelled":"","VC":"N","CaseNumber":"N/A","CaseId":0,"IsFullDay":false,"CalendarDescription":null},{"CalendarId":1038,"StartDateTime":"8/3/2023 11:00:00 AM","EndDateTime":"8/3/2023 11:00:00 AM","FullName":"Don Brown","CalendarTypeDesc":"Board Meeting","Description":"\u003cdiv class=\u0027eventBoardMeeting eventDetails\u0027\u003e\r\n\u003cdiv class=\u0027eventHeading\u0027\u003eBoard Meeting\u003c/div\u003e\r\n\u003cdiv class=\u0027eventLocation\u0027\u003eSpringfield Videoconference Room 1244 N,\nFirst Floor 1021 N. Grand Avenue East, Springfield, Illinois\u003c/div\u003e\r\n\u003c/div\u003e\r\n","Location":"Springfield Videoconference Room 1244 N,\nFirst Floor 1021 N. Grand Avenue East, Springfield, Illinois","Cancelled":"","VC":"N","CaseNumber":"N/A","CaseId":0,"IsFullDay":false,"CalendarDescription":null},{"CalendarId":1039,"StartDateTime":"8/17/2023 11:00:00 AM","EndDateTime":"8/17/2023 11:00:00 AM","FullName":"Don Brown","CalendarTypeDesc":"Board Meeting","Description":"\u003cdiv class=\u0027eventBoardMeeting eventDetails\u0027\u003e\r\n\u003cdiv class=\u0027eventHeading\u0027\u003eBoard Meeting\u003c/div\u003e\r\n\u003cdiv class=\u0027eventLocation\u0027\u003eSpringfield Videoconference Room 1244 N,\nFirst Floor 1021 N. Grand Avenue East, Springfield, Illinois\u003c/div\u003e\r\n\u003c/div\u003e\r\n","Location":"Springfield Videoconference Room 1244 N,\nFirst Floor 1021 N. Grand Avenue East, Springfield, Illinois","Cancelled":"","VC":"N","CaseNumber":"N/A","CaseId":0,"IsFullDay":false,"CalendarDescription":null},{"CalendarId":1048,"StartDateTime":"1/1/2024 12:00:00 AM","EndDateTime":"","FullName":"Don Brown","CalendarTypeDesc":"Holiday","Description":"\u003cdiv class=\u0027eventHoliday eventDetails\u0027\u003e\r\nNew Year\u0027s Day - Board Closed\u003cbr /\u003e\r\n\u003c/div\u003e\r\n","Location":"","Cancelled":"","VC":"N","CaseNumber":"N/A","CaseId":0,"IsFullDay":false,"CalendarDescription":null},{"CalendarId":1049,"StartDateTime":"1/15/2024 12:00:00 AM","EndDateTime":"1/15/2024 12:00:00 AM","FullName":"Don Brown","CalendarTypeDesc":"Holiday","Description":"\u003cdiv class=\u0027eventHoliday eventDetails\u0027\u003e\r\nMartin Luther King Day - Board Closed\u003cbr /\u003e\r\n\u003c/div\u003e\r\n","Location":"","Cancelled":"","VC":"N","CaseNumber":"N/A","CaseId":0,"IsFullDay":false,"CalendarDescription":null},{"CalendarId":1050,"StartDateTime":"2/12/2024 12:00:00 AM","EndDateTime":"2/12/2024 12:00:00 AM","FullName":"Don Brown","CalendarTypeDesc":"Holiday","Description":"\u003cdiv class=\u0027eventHoliday eventDetails\u0027\u003e\r\nLincoln\u0027s Birthday - Board Closed\u003cbr /\u003e\r\n\u003c/div\u003e\r\n","Location":"","Cancelled":"","VC":"N","CaseNumber":"N/A","CaseId":0,"IsFullDay":false,"CalendarDescription":null},{"CalendarId":1051,"StartDateTime":"2/19/2024 12:00:00 AM","EndDateTime":"2/19/2024 12:00:00 AM","FullName":"Don Brown","CalendarTypeDesc":"Holiday","Description":"\u003cdiv class=\u0027eventHoliday eventDetails\u0027\u003e\r\nPresident’s Day - Board Closed\u003cbr /\u003e\r\n\u003c/div\u003e\r\n","Location":"","Cancelled":"","VC":"N","CaseNumber":"N/A","CaseId":0,"IsFullDay":false,"CalendarDescription":null},{"CalendarId":1052,"StartDateTime":"5/27/2024 12:00:00 AM","EndDateTime":"5/27/2024 12:00:00 AM","FullName":"Don Brown","CalendarTypeDesc":"Holiday","Description":"\u003cdiv class=\u0027eventHoliday eventDetails\u0027\u003e\r\nMemorial Day - Board Closed\u003cbr /\u003e\r\n\u003c/div\u003e\r\n","Location":"","Cancelled":"","VC":"N","CaseNumber":"N/A","CaseId":0,"IsFullDay":false,"CalendarDescription":null},{"CalendarId":1053,"StartDateTime":"6/19/2024 12:00:00 AM","EndDateTime":"6/19/2024 12:00:00 AM","FullName":"Don Brown","CalendarTypeDesc":"Holiday","Description":"\u003cdiv class=\u0027eventHoliday eventDetails\u0027\u003e\r\nJuneteenth - Board Closed\u003cbr /\u003e\r\n\u003c/div\u003e\r\n","Location":"","Cancelled":"","VC":"N","CaseNumber":"N/A","CaseId":0,"IsFullDay":false,"CalendarDescription":null},{"CalendarId":1054,"StartDateTime":"7/4/2024 12:00:00 AM","EndDateTime":"7/4/2024 12:00:00 AM","FullName":"Don Brown","CalendarTypeDesc":"Holiday","Description":"\u003cdiv class=\u0027eventHoliday eventDetails\u0027\u003e\r\nIndependence Day - Board Closed\u003cbr /\u003e\r\n\u003c/div\u003e\r\n","Location":"","Cancelled":"","VC":"N","CaseNumber":"N/A","CaseId":0,"IsFullDay":false,"CalendarDescription":null},{"CalendarId":1055,"StartDateTime":"10/14/2024 12:00:00 AM","EndDateTime":"10/14/2024 12:00:00 AM","FullName":"Don Brown","CalendarTypeDesc":"Holiday","Description":"\u003cdiv class=\u0027eventHoliday eventDetails\u0027\u003e\r\nColumbus Day - Board Closed\u003cbr /\u003e\r\n\u003c/div\u003e\r\n","Location":"","Cancelled":"","VC":"N","CaseNumber":"N/A","CaseId":0,"IsFullDay":false,"CalendarDescription":null},{"CalendarId":1056,"StartDateTime":"9/2/2024 12:00:00 AM","EndDateTime":"9/2/2024 12:00:00 AM","FullName":"Don Brown","CalendarTypeDesc":"Holiday","Description":"\u003cdiv class=\u0027eventHoliday eventDetails\u0027\u003e\r\nLabor Day - Board Closed\u003cbr /\u003e\r\n\u003c/div\u003e\r\n","Location":"","Cancelled":"","VC":"N","CaseNumber":"N/A","CaseId":0,"IsFullDay":false,"CalendarDescription":null},{"CalendarId":1061,"StartDateTime":"12/25/2024 12:00:00 AM","EndDateTime":"12/25/2024 12:00:00 AM","FullName":"Don Brown","CalendarTypeDesc":"Holiday","Description":"\u003cdiv class=\u0027eventHoliday eventDetails\u0027\u003e\r\nChristmas - Board Closed\u003cbr /\u003e\r\n\u003c/div\u003e\r\n","Location":"","Cancelled":"","VC":"N","CaseNumber":"N/A","CaseId":0,"IsFullDay":false,"CalendarDescription":null},{"CalendarId":1062,"StartDateTime":"1/4/2024 11:00:00 AM","EndDateTime":"1/4/2024 11:00:00 AM","FullName":"Don Brown","CalendarTypeDesc":"Board Meeting","Description":"\u003cdiv class=\u0027eventBoardMeeting eventDetails\u0027\u003e\r\n\u003cdiv class=\u0027eventHeading\u0027\u003eBoard Meeting\u003c/div\u003e\r\n\u003cdiv class=\u0027eventLocation\u0027\u003eIPCB Office \n1021 N Grand Ave E - Room 1244 N (First Floor)\nSpringfield, Illinois\n- and -\nMICHAEL A BILANDIC BUILDING 160 N. LASALLE - Room N505 Chicago, Illinois\u003c/div\u003e\r\n\u003c/div\u003e\r\n","Location":"IPCB Office \n1021 N Grand Ave E - Room 1244 N (First Floor)\nSpringfield, Illinois\n- and -\nMICHAEL A BILANDIC BUILDING 160 N. LASALLE - Room N505 Chicago, Illinois","Cancelled":"","VC":"V","CaseNumber":"N/A","CaseId":0,"IsFullDay":false,"CalendarDescription":null},{"CalendarId":1063,"StartDateTime":"1/18/2024 11:00:00 AM","EndDateTime":"1/18/2024 11:00:00 AM","FullName":"Don Brown","CalendarTypeDesc":"Board Meeting","Description":"\u003cdiv class=\u0027eventBoardMeeting eventDetails\u0027\u003e\r\n\u003cdiv class=\u0027eventHeading\u0027\u003eBoard Meeting\u003c/div\u003e\r\n\u003cdiv class=\u0027eventLocation\u0027\u003eIPCB Office \n1021 N Grand Ave E - Room 1244 N (First Floor)\nSpringfield, Illinois\n- and -\nMICHAEL A BILANDIC BUILDING 160 N. LASALLE - Room N505 Chicago, Illinois\u003c/div\u003e\r\n\u003c/div\u003e\r\n","Location":"IPCB Office \n1021 N Grand Ave E - Room 1244 N (First Floor)\nSpringfield, Illinois\n- and -\nMICHAEL A BILANDIC BUILDING 160 N. LASALLE - Room N505 Chicago, Illinois","Cancelled":"","VC":"V","CaseNumber":"N/A","CaseId":0,"IsFullDay":false,"CalendarDescription":null},{"CalendarId":1034,"StartDateTime":"6/1/2023 11:00:00 AM","EndDateTime":"6/1/2023 11:00:00 AM","FullName":"Don Brown","CalendarTypeDesc":"Board Meeting","Description":"\u003cdiv class=\u0027eventBoardMeeting eventDetails\u0027\u003e\r\n\u003cdiv class=\u0027eventHeading\u0027\u003eBoard Meeting\u003c/div\u003e\r\n\u003cdiv class=\u0027eventLocation\u0027\u003eIPCB Office \n1021 N Grand Ave E - Room 1244 N (First Floor)\nSpringfield, Illinois\n- and -\nMICHAEL A BILANDIC BUILDING\n160 N. LASALLE - Room N505\nChicago, Illinois\n\u003c/div\u003e\r\n\u003c/div\u003e\r\n","Location":"IPCB Office \n1021 N Grand Ave E - Room 1244 N (First Floor)\nSpringfield, Illinois\n- and -\nMICHAEL A BILANDIC BUILDING\n160 N. LASALLE - Room N505\nChicago, Illinois\n","Cancelled":"","VC":"V","CaseNumber":"N/A","CaseId":0,"IsFullDay":false,"CalendarDescription":null},{"CalendarId":1040,"StartDateTime":"9/7/2023 11:00:00 AM","EndDateTime":"9/7/2023 11:00:00 AM","FullName":"Don Brown","CalendarTypeDesc":"Board Meeting","Description":"\u003cdiv class=\u0027eventBoardMeeting eventDetails\u0027\u003e\r\n\u003cdiv class=\u0027eventHeading\u0027\u003eBoard Meeting\u003c/div\u003e\r\n\u003cdiv class=\u0027eventLocation\u0027\u003eIPCB Office 1021 N Grand Ave E - Room 1244 N (First Floor) Springfield, Illinois - and – James R Thompson Center 100 W. Randolph Street - Room 16-504 Chicago, Illinois\u003c/div\u003e\r\n\u003c/div\u003e\r\n","Location":"IPCB Office 1021 N Grand Ave E - Room 1244 N (First Floor) Springfield, Illinois - and – James R Thompson Center 100 W. Randolph Street - Room 16-504 Chicago, Illinois","Cancelled":"","VC":"N","CaseNumber":"N/A","CaseId":0,"IsFullDay":false,"CalendarDescription":null},{"CalendarId":1041,"StartDateTime":"9/21/2023 11:00:00 AM","EndDateTime":"9/21/2023 11:00:00 AM","FullName":"Don Brown","CalendarTypeDesc":"Board Meeting","Description":"\u003cdiv class=\u0027eventBoardMeeting eventDetails\u0027\u003e\r\n\u003cdiv class=\u0027eventHeading\u0027\u003eBoard Meeting\u003c/div\u003e\r\n\u003cdiv class=\u0027eventLocation\u0027\u003eIPCB Office 1021 N Grand Ave E - Room 1244 N (First Floor) Springfield, Illinois - and – James R Thompson Center 100 W. Randolph Street - Room 16-504 Chicago, Illinois\u003c/div\u003e\r\n\u003c/div\u003e\r\n","Location":"IPCB Office 1021 N Grand Ave E - Room 1244 N (First Floor) Springfield, Illinois - and – James R Thompson Center 100 W. Randolph Street - Room 16-504 Chicago, Illinois","Cancelled":"","VC":"N","CaseNumber":"N/A","CaseId":0,"IsFullDay":false,"CalendarDescription":null},{"CalendarId":1042,"StartDateTime":"10/5/2023 11:00:00 AM","EndDateTime":"10/5/2023 11:00:00 AM","FullName":"Don Brown","CalendarTypeDesc":"Board Meeting","Description":"\u003cdiv class=\u0027eventBoardMeeting eventDetails\u0027\u003e\r\n\u003cdiv class=\u0027eventHeading\u0027\u003eBoard Meeting\u003c/div\u003e\r\n\u003cdiv class=\u0027eventLocation\u0027\u003eIPCB Office 1021 N Grand Ave E - Room 1244 N (First Floor) Springfield, Illinois - and – James R Thompson Center 100 W. Randolph Street - Room 16-504 Chicago, Illinois\u003c/div\u003e\r\n\u003c/div\u003e\r\n","Location":"IPCB Office 1021 N Grand Ave E - Room 1244 N (First Floor) Springfield, Illinois - and – James R Thompson Center 100 W. Randolph Street - Room 16-504 Chicago, Illinois","Cancelled":"","VC":"N","CaseNumber":"N/A","CaseId":0,"IsFullDay":false,"CalendarDescription":null},{"CalendarId":1043,"StartDateTime":"10/19/2023 11:00:00 AM","EndDateTime":"10/19/2023 11:00:00 AM","FullName":"Don Brown","CalendarTypeDesc":"Board Meeting","Description":"\u003cdiv class=\u0027eventBoardMeeting eventDetails\u0027\u003e\r\n\u003cdiv class=\u0027eventHeading\u0027\u003eBoard Meeting\u003c/div\u003e\r\n\u003cdiv class=\u0027eventLocation\u0027\u003eIPCB Office 1021 N Grand Ave E - Room 1244 N (First Floor) Springfield, Illinois - and – James R Thompson Center 100 W. Randolph Street - Room 16-504 Chicago, Illinois\u003c/div\u003e\r\n\u003c/div\u003e\r\n","Location":"IPCB Office 1021 N Grand Ave E - Room 1244 N (First Floor) Springfield, Illinois - and – James R Thompson Center 100 W. Randolph Street - Room 16-504 Chicago, Illinois","Cancelled":"","VC":"N","CaseNumber":"N/A","CaseId":0,"IsFullDay":false,"CalendarDescription":null},{"CalendarId":1044,"StartDateTime":"11/2/2023 11:00:00 AM","EndDateTime":"11/2/2023 11:00:00 AM","FullName":"Don Brown","CalendarTypeDesc":"Board Meeting","Description":"\u003cdiv class=\u0027eventBoardMeeting eventDetails\u0027\u003e\r\n\u003cdiv class=\u0027eventHeading\u0027\u003eBoard Meeting\u003c/div\u003e\r\n\u003cdiv class=\u0027eventLocation\u0027\u003eIPCB Office 1021 N Grand Ave E - Room 1244 N (First Floor) Springfield, Illinois - and - MICHAEL A BILANDIC BUILDING 160 N. LASALLE - Room N505 Chicago, Illinois\u003c/div\u003e\r\n\u003c/div\u003e\r\n","Location":"IPCB Office 1021 N Grand Ave E - Room 1244 N (First Floor) Springfield, Illinois - and - MICHAEL A BILANDIC BUILDING 160 N. LASALLE - Room N505 Chicago, Illinois","Cancelled":"","VC":"N","CaseNumber":"N/A","CaseId":0,"IsFullDay":false,"CalendarDescription":null},{"CalendarId":1045,"StartDateTime":"11/16/2023 11:00:00 AM","EndDateTime":"11/16/2023 11:00:00 AM","FullName":"Don Brown","CalendarTypeDesc":"Board Meeting","Description":"\u003cdiv class=\u0027eventBoardMeeting eventDetails\u0027\u003e\r\n\u003cdiv class=\u0027eventHeading\u0027\u003eBoard Meeting\u003c/div\u003e\r\n\u003cdiv class=\u0027eventLocation\u0027\u003eIPCB Office 1021 N Grand Ave E - Room 1244 N (First Floor) Springfield, Illinois - and - MICHAEL A BILANDIC BUILDING 160 N. LASALLE - Room N502 Chicago, Illinois\u003c/div\u003e\r\n\u003c/div\u003e\r\n","Location":"IPCB Office 1021 N Grand Ave E - Room 1244 N (First Floor) Springfield, Illinois - and - MICHAEL A BILANDIC BUILDING 160 N. LASALLE - Room N502 Chicago, Illinois","Cancelled":"","VC":"N","CaseNumber":"N/A","CaseId":0,"IsFullDay":false,"CalendarDescription":null},{"CalendarId":1046,"StartDateTime":"12/7/2023 11:00:00 AM","EndDateTime":"12/7/2023 11:00:00 AM","FullName":"Don Brown","CalendarTypeDesc":"Board Meeting","Description":"\u003cdiv class=\u0027eventBoardMeeting eventDetails\u0027\u003e\r\n\u003cdiv class=\u0027eventHeading\u0027\u003eBoard Meeting\u003c/div\u003e\r\n\u003cdiv class=\u0027eventLocation\u0027\u003eIPCB Office 1021 N Grand Ave E - Room 1244 N (First Floor) Springfield, Illinois - and - MICHAEL A BILANDIC BUILDING 160 N. LASALLE - Room N505 Chicago, Illinois\u003c/div\u003e\r\n\u003c/div\u003e\r\n","Location":"IPCB Office 1021 N Grand Ave E - Room 1244 N (First Floor) Springfield, Illinois - and - MICHAEL A BILANDIC BUILDING 160 N. LASALLE - Room N505 Chicago, Illinois","Cancelled":"","VC":"N","CaseNumber":"N/A","CaseId":0,"IsFullDay":false,"CalendarDescription":null},{"CalendarId":1047,"StartDateTime":"12/21/2023 11:00:00 AM","EndDateTime":"12/21/2023 11:00:00 AM","FullName":"Don Brown","CalendarTypeDesc":"Board Meeting","Description":"\u003cdiv class=\u0027eventBoardMeeting eventDetails\u0027\u003e\r\n\u003cdiv class=\u0027eventHeading\u0027\u003eBoard Meeting\u003c/div\u003e\r\n\u003cdiv class=\u0027eventLocation\u0027\u003eIPCB Office 1021 N Grand Ave E - Room 1244 N (First Floor) Springfield, Illinois - and - MICHAEL A BILANDIC BUILDING 160 N. LASALLE - Room N505 Chicago, Illinois\u003c/div\u003e\r\n\u003c/div\u003e\r\n","Location":"IPCB Office 1021 N Grand Ave E - Room 1244 N (First Floor) Springfield, Illinois - and - MICHAEL A BILANDIC BUILDING 160 N. LASALLE - Room N505 Chicago, Illinois","Cancelled":"","VC":"N","CaseNumber":"N/A","CaseId":0,"IsFullDay":false,"CalendarDescription":null},{"CalendarId":1057,"StartDateTime":"11/5/2024 12:00:00 AM","EndDateTime":"11/5/2024 12:00:00 AM","FullName":"Don Brown","CalendarTypeDesc":"Holiday","Description":"\u003cdiv class=\u0027eventHoliday eventDetails\u0027\u003e\r\nGeneral Election - Board Closed\u003cbr /\u003e\r\n\u003c/div\u003e\r\n","Location":"","Cancelled":"","VC":"N","CaseNumber":"N/A","CaseId":0,"IsFullDay":false,"CalendarDescription":null},{"CalendarId":1058,"StartDateTime":"11/11/2024 12:00:00 AM","EndDateTime":"11/11/2024 12:00:00 AM","FullName":"Don Brown","CalendarTypeDesc":"Holiday","Description":"\u003cdiv class=\u0027eventHoliday eventDetails\u0027\u003e\r\nVeteran\u0027s Day - Board Closed\u003cbr /\u003e\r\n\u003c/div\u003e\r\n","Location":"","Cancelled":"","VC":"N","CaseNumber":"N/A","CaseId":0,"IsFullDay":false,"CalendarDescription":null},{"CalendarId":1059,"StartDateTime":"11/28/2024 12:00:00 AM","EndDateTime":"11/28/2024 12:00:00 AM","FullName":"Don Brown","CalendarTypeDesc":"Holiday","Description":"\u003cdiv class=\u0027eventHoliday eventDetails\u0027\u003e\r\nThanksgiving - Board Closed\u003cbr /\u003e\r\n\u003c/div\u003e\r\n","Location":"","Cancelled":"","VC":"N","CaseNumber":"N/A","CaseId":0,"IsFullDay":false,"CalendarDescription":null},{"CalendarId":1060,"StartDateTime":"11/29/2024 12:00:00 AM","EndDateTime":"11/29/2024 12:00:00 AM","FullName":"Don Brown","CalendarTypeDesc":"Holiday","Description":"\u003cdiv class=\u0027eventHoliday eventDetails\u0027\u003e\r\nThanksgiving - Board Closed\u003cbr /\u003e\r\n\u003c/div\u003e\r\n","Location":"","Cancelled":"","VC":"N","CaseNumber":"N/A","CaseId":0,"IsFullDay":false,"CalendarDescription":null},{"CalendarId":1064,"StartDateTime":"2/1/2024 11:00:00 AM","EndDateTime":"2/1/2024 11:00:00 AM","FullName":"Don Brown","CalendarTypeDesc":"Board Meeting","Description":"\u003cdiv class=\u0027eventBoardMeeting eventDetails\u0027\u003e\r\n\u003cdiv class=\u0027eventHeading\u0027\u003eBoard Meeting\u003c/div\u003e\r\n\u003cdiv class=\u0027eventLocation\u0027\u003eIPCB Office \n1021 N Grand Ave E - Room 1244 N (First Floor)\nSpringfield, Illinois\n- and -\nMICHAEL A BILANDIC BUILDING 160 N. LASALLE - Room N505 Chicago, Illinois\u003c/div\u003e\r\n\u003c/div\u003e\r\n","Location":"IPCB Office \n1021 N Grand Ave E - Room 1244 N (First Floor)\nSpringfield, Illinois\n- and -\nMICHAEL A BILANDIC BUILDING 160 N. LASALLE - Room N505 Chicago, Illinois","Cancelled":"","VC":"V","CaseNumber":"N/A","CaseId":0,"IsFullDay":false,"CalendarDescription":null},{"CalendarId":1066,"StartDateTime":"2/15/2024 11:00:00 AM","EndDateTime":"2/15/2024 11:00:00 AM","FullName":"Don Brown","CalendarTypeDesc":"Board Meeting","Description":"\u003cdiv class=\u0027eventBoardMeeting eventDetails\u0027\u003e\r\n\u003cdiv class=\u0027eventHeading\u0027\u003eBoard Meeting\u003c/div\u003e\r\n\u003cdiv class=\u0027eventLocation\u0027\u003eIPCB Office \n1021 N Grand Ave E - Room 1244 N (First Floor)\nSpringfield, Illinois\n- and -\nMICHAEL A BILANDIC BUILDING 160 N. LASALLE - Room N505 Chicago, Illinois\u003c/div\u003e\r\n\u003c/div\u003e\r\n","Location":"IPCB Office \n1021 N Grand Ave E - Room 1244 N (First Floor)\nSpringfield, Illinois\n- and -\nMICHAEL A BILANDIC BUILDING 160 N. LASALLE - Room N505 Chicago, Illinois","Cancelled":"","VC":"V","CaseNumber":"N/A","CaseId":0,"IsFullDay":false,"CalendarDescription":null},{"CalendarId":1079,"StartDateTime":"9/5/2024 11:00:00 AM","EndDateTime":"9/5/2024 11:00:00 AM","FullName":"Don Brown","CalendarTypeDesc":"Board Meeting","Description":"\u003cdiv class=\u0027eventBoardMeeting eventDetails\u0027\u003e\r\n\u003cdiv class=\u0027eventHeading\u0027\u003eBoard Meeting\u003c/div\u003e\r\n\u003cdiv class=\u0027eventLocation\u0027\u003eIPCB Office 1021 N Grand Ave E - Room 1244 N (First Floor) Springfield, Illinois - and - MICHAEL A BILANDIC BUILDING 160 N. LASALLE - Room N505 Chicago, Illinois\n\u003c/div\u003e\r\n\u003c/div\u003e\r\n","Location":"IPCB Office 1021 N Grand Ave E - Room 1244 N (First Floor) Springfield, Illinois - and - MICHAEL A BILANDIC BUILDING 160 N. LASALLE - Room N505 Chicago, Illinois\n","Cancelled":"","VC":"N","CaseNumber":"N/A","CaseId":0,"IsFullDay":false,"CalendarDescription":null},{"CalendarId":1080,"StartDateTime":"9/19/2024 11:00:00 AM","EndDateTime":"9/19/2024 11:00:00 AM","FullName":"Don Brown","CalendarTypeDesc":"Board Meeting","Description":"\u003cdiv class=\u0027eventBoardMeeting eventDetails\u0027\u003e\r\n\u003cdiv class=\u0027eventHeading\u0027\u003eBoard Meeting\u003c/div\u003e\r\n\u003cdiv class=\u0027eventLocation\u0027\u003eIPCB Office 1021 N Grand Ave E - Room 1244 N (First Floor) Springfield, Illinois - and - MICHAEL A BILANDIC BUILDING 160 N. LASALLE - Room N505 Chicago, Illinois\n\u003c/div\u003e\r\n\u003c/div\u003e\r\n","Location":"IPCB Office 1021 N Grand Ave E - Room 1244 N (First Floor) Springfield, Illinois - and - MICHAEL A BILANDIC BUILDING 160 N. LASALLE - Room N505 Chicago, Illinois\n","Cancelled":"","VC":"N","CaseNumber":"N/A","CaseId":0,"IsFullDay":false,"CalendarDescription":null},{"CalendarId":1067,"StartDateTime":"3/7/2024 11:00:00 AM","EndDateTime":"3/7/2024 11:00:00 AM","FullName":"Don Brown","CalendarTypeDesc":"Board Meeting","Description":"\u003cdiv class=\u0027eventBoardMeeting eventDetails\u0027\u003e\r\n\u003cdiv class=\u0027eventHeading\u0027\u003eBoard Meeting\u003c/div\u003e\r\n\u003cdiv class=\u0027eventLocation\u0027\u003eIPCB Office \n1021 N Grand Ave E - Room 1244 N (First Floor)\nSpringfield, Illinois\n- and -\nMICHAEL A BILANDIC BUILDING 160 N. LASALLE - Room N505 Chicago, Illinois\u003c/div\u003e\r\n\u003c/div\u003e\r\n","Location":"IPCB Office \n1021 N Grand Ave E - Room 1244 N (First Floor)\nSpringfield, Illinois\n- and -\nMICHAEL A BILANDIC BUILDING 160 N. LASALLE - Room N505 Chicago, Illinois","Cancelled":"","VC":"V","CaseNumber":"N/A","CaseId":0,"IsFullDay":false,"CalendarDescription":null},{"CalendarId":1068,"StartDateTime":"3/21/2024 11:00:00 AM","EndDateTime":"3/21/2024 11:00:00 AM","FullName":"Don Brown","CalendarTypeDesc":"Board Meeting","Description":"\u003cdiv class=\u0027eventBoardMeeting eventDetails\u0027\u003e\r\n\u003cdiv class=\u0027eventHeading\u0027\u003eBoard Meeting\u003c/div\u003e\r\n\u003cdiv class=\u0027eventLocation\u0027\u003eIPCB Office \n1021 N Grand Ave E - Room 1244 N (First Floor)\nSpringfield, Illinois\n- and -\nMICHAEL A BILANDIC BUILDING 160 N. LASALLE - Room N505 Chicago, Illinois\u003c/div\u003e\r\n\u003c/div\u003e\r\n","Location":"IPCB Office \n1021 N Grand Ave E - Room 1244 N (First Floor)\nSpringfield, Illinois\n- and -\nMICHAEL A BILANDIC BUILDING 160 N. LASALLE - Room N505 Chicago, Illinois","Cancelled":"","VC":"V","CaseNumber":"N/A","CaseId":0,"IsFullDay":false,"CalendarDescription":null},{"CalendarId":1069,"StartDateTime":"4/4/2024 11:00:00 AM","EndDateTime":"4/4/2024 11:00:00 AM","FullName":"Don Brown","CalendarTypeDesc":"Board Meeting","Description":"\u003cdiv class=\u0027eventBoardMeeting eventDetails\u0027\u003e\r\n\u003cdiv class=\u0027eventHeading\u0027\u003eBoard Meeting\u003c/div\u003e\r\n\u003cdiv class=\u0027eventLocation\u0027\u003eIPCB Office \n1021 N Grand Ave E - Room 1244 N (First Floor)\nSpringfield, Illinois\n- and -\nMICHAEL A BILANDIC BUILDING 160 N. LASALLE - Room N505 Chicago, Illinois\u003c/div\u003e\r\n\u003c/div\u003e\r\n","Location":"IPCB Office \n1021 N Grand Ave E - Room 1244 N (First Floor)\nSpringfield, Illinois\n- and -\nMICHAEL A BILANDIC BUILDING 160 N. LASALLE - Room N505 Chicago, Illinois","Cancelled":"","VC":"V","CaseNumber":"N/A","CaseId":0,"IsFullDay":false,"CalendarDescription":null},{"CalendarId":1070,"StartDateTime":"4/18/2024 11:00:00 AM","EndDateTime":"4/18/2024 11:00:00 AM","FullName":"Don Brown","CalendarTypeDesc":"Board Meeting","Description":"\u003cdiv class=\u0027eventBoardMeeting eventDetails\u0027\u003e\r\n\u003cdiv class=\u0027eventHeading\u0027\u003eBoard Meeting\u003c/div\u003e\r\n\u003cdiv class=\u0027eventLocation\u0027\u003eIPCB Office \n1021 N Grand Ave E - Room 1244 N (First Floor)\nSpringfield, Illinois\n- and -\nMICHAEL A BILANDIC BUILDING 160 N. LASALLE - Room N505 Chicago, Illinois\u003c/div\u003e\r\n\u003c/div\u003e\r\n","Location":"IPCB Office \n1021 N Grand Ave E - Room 1244 N (First Floor)\nSpringfield, Illinois\n- and -\nMICHAEL A BILANDIC BUILDING 160 N. LASALLE - Room N505 Chicago, Illinois","Cancelled":"","VC":"V","CaseNumber":"N/A","CaseId":0,"IsFullDay":false,"CalendarDescription":null},{"CalendarId":1071,"StartDateTime":"5/2/2024 11:00:00 AM","EndDateTime":"5/2/2024 11:00:00 AM","FullName":"Don Brown","CalendarTypeDesc":"Board Meeting","Description":"\u003cdiv class=\u0027eventBoardMeeting eventDetails\u0027\u003e\r\n\u003cdiv class=\u0027eventHeading\u0027\u003eBoard Meeting\u003c/div\u003e\r\n\u003cdiv class=\u0027eventLocation\u0027\u003eIPCB Office \n1021 N Grand Ave E - Room 1244 N (First Floor)\nSpringfield, Illinois\n- and -\nMICHAEL A BILANDIC BUILDING 160 N. LASALLE - Room N505 Chicago, Illinois\u003c/div\u003e\r\n\u003c/div\u003e\r\n","Location":"IPCB Office \n1021 N Grand Ave E - Room 1244 N (First Floor)\nSpringfield, Illinois\n- and -\nMICHAEL A BILANDIC BUILDING 160 N. LASALLE - Room N505 Chicago, Illinois","Cancelled":"","VC":"V","CaseNumber":"N/A","CaseId":0,"IsFullDay":false,"CalendarDescription":null},{"CalendarId":1072,"StartDateTime":"5/16/2024 11:00:00 AM","EndDateTime":"5/16/2024 11:00:00 AM","FullName":"Don Brown","CalendarTypeDesc":"Board Meeting","Description":"\u003cdiv class=\u0027eventBoardMeeting eventDetails\u0027\u003e\r\n\u003cdiv class=\u0027eventHeading\u0027\u003eBoard Meeting\u003c/div\u003e\r\n\u003cdiv class=\u0027eventLocation\u0027\u003eIPCB Office \n1021 N Grand Ave E - Room 1244 N (First Floor)\nSpringfield, Illinois\n- and -\nMICHAEL A BILANDIC BUILDING 160 N. LASALLE - Room N505 Chicago, Illinois\u003c/div\u003e\r\n\u003c/div\u003e\r\n","Location":"IPCB Office \n1021 N Grand Ave E - Room 1244 N (First Floor)\nSpringfield, Illinois\n- and -\nMICHAEL A BILANDIC BUILDING 160 N. LASALLE - Room N505 Chicago, Illinois","Cancelled":"","VC":"V","CaseNumber":"N/A","CaseId":0,"IsFullDay":false,"CalendarDescription":null},{"CalendarId":1073,"StartDateTime":"6/6/2024 11:00:00 AM","EndDateTime":"6/6/2024 11:00:00 AM","FullName":"Don Brown","CalendarTypeDesc":"Board Meeting","Description":"\u003cdiv class=\u0027eventBoardMeeting eventDetails\u0027\u003e\r\n\u003cdiv class=\u0027eventHeading\u0027\u003eBoard Meeting\u003c/div\u003e\r\n\u003cdiv class=\u0027eventLocation\u0027\u003eIPCB Office \n1021 N Grand Ave E - Room 1244 N (First Floor)\nSpringfield, Illinois\n- and -\nMICHAEL A BILANDIC BUILDING 160 N. LASALLE - Room N505 Chicago, Illinois\u003c/div\u003e\r\n\u003c/div\u003e\r\n","Location":"IPCB Office \n1021 N Grand Ave E - Room 1244 N (First Floor)\nSpringfield, Illinois\n- and -\nMICHAEL A BILANDIC BUILDING 160 N. LASALLE - Room N505 Chicago, Illinois","Cancelled":"","VC":"V","CaseNumber":"N/A","CaseId":0,"IsFullDay":false,"CalendarDescription":null},{"CalendarId":1074,"StartDateTime":"6/20/2024 11:00:00 AM","EndDateTime":"6/20/2024 11:00:00 AM","FullName":"Don Brown","CalendarTypeDesc":"Board Meeting","Description":"\u003cdiv class=\u0027eventBoardMeeting eventDetails\u0027\u003e\r\n\u003cdiv class=\u0027eventHeading\u0027\u003eBoard Meeting\u003c/div\u003e\r\n\u003cdiv class=\u0027eventLocation\u0027\u003eIPCB Office \n1021 N Grand Ave E - Room 1244 N (First Floor)\nSpringfield, Illinois\n- and -\nMICHAEL A BILANDIC BUILDING 160 N. LASALLE - Room N505 Chicago, Illinois\u003c/div\u003e\r\n\u003c/div\u003e\r\n","Location":"IPCB Office \n1021 N Grand Ave E - Room 1244 N (First Floor)\nSpringfield, Illinois\n- and -\nMICHAEL A BILANDIC BUILDING 160 N. LASALLE - Room N505 Chicago, Illinois","Cancelled":"","VC":"V","CaseNumber":"N/A","CaseId":0,"IsFullDay":false,"CalendarDescription":null},{"CalendarId":1075,"StartDateTime":"7/11/2024 11:00:00 AM","EndDateTime":"7/11/2024 11:00:00 AM","FullName":"Don Brown","CalendarTypeDesc":"Board Meeting","Description":"\u003cdiv class=\u0027eventBoardMeeting eventDetails\u0027\u003e\r\n\u003cdiv class=\u0027eventHeading\u0027\u003eBoard Meeting\u003c/div\u003e\r\n\u003cdiv class=\u0027eventLocation\u0027\u003eIPCB Office 1021 N Grand Ave E - Room 1244 N (First Floor) Springfield, Illinois - and - MICHAEL A BILANDIC BUILDING 160 N. LASALLE - Room N502 Chicago, Illinois\n\u003c/div\u003e\r\n\u003c/div\u003e\r\n","Location":"IPCB Office 1021 N Grand Ave E - Room 1244 N (First Floor) Springfield, Illinois - and - MICHAEL A BILANDIC BUILDING 160 N. LASALLE - Room N502 Chicago, Illinois\n","Cancelled":"","VC":"N","CaseNumber":"N/A","CaseId":0,"IsFullDay":false,"CalendarDescription":null},{"CalendarId":1076,"StartDateTime":"7/25/2024 11:00:00 AM","EndDateTime":"7/25/2024 11:00:00 AM","FullName":"Don Brown","CalendarTypeDesc":"Board Meeting","Description":"\u003cdiv class=\u0027eventBoardMeeting eventDetails\u0027\u003e\r\n\u003cdiv class=\u0027eventHeading\u0027\u003eBoard Meeting\u003c/div\u003e\r\n\u003cdiv class=\u0027eventLocation\u0027\u003eSpringfield Videoconference Room 1244 N,\nFirst Floor 1021 N. Grand Avenue East, Springfield, Illinois\n\u003c/div\u003e\r\n\u003c/div\u003e\r\n","Location":"Springfield Videoconference Room 1244 N,\nFirst Floor 1021 N. Grand Avenue East, Springfield, Illinois\n","Cancelled":"","VC":"N","CaseNumber":"N/A","CaseId":0,"IsFullDay":false,"CalendarDescription":null},{"CalendarId":1077,"StartDateTime":"8/8/2024 11:00:00 AM","EndDateTime":"8/8/2024 11:00:00 AM","FullName":"Don Brown","CalendarTypeDesc":"Board Meeting","Description":"\u003cdiv class=\u0027eventBoardMeeting eventDetails\u0027\u003e\r\n\u003cdiv class=\u0027eventHeading\u0027\u003eBoard Meeting\u003c/div\u003e\r\n\u003cdiv class=\u0027eventLocation\u0027\u003eIPCB Office 1021 N Grand Ave E - Room 1244 N (First Floor) Springfield, Illinois - and - MICHAEL A BILANDIC BUILDING 160 N. LASALLE - Room C500 Chicago, Illinois\n\u003c/div\u003e\r\n\u003c/div\u003e\r\n","Location":"IPCB Office 1021 N Grand Ave E - Room 1244 N (First Floor) Springfield, Illinois - and - MICHAEL A BILANDIC BUILDING 160 N. LASALLE - Room C500 Chicago, Illinois\n","Cancelled":"","VC":"N","CaseNumber":"N/A","CaseId":0,"IsFullDay":false,"CalendarDescription":null},{"CalendarId":1078,"StartDateTime":"8/22/2024 11:00:00 AM","EndDateTime":"8/22/2024 11:00:00 AM","FullName":"Don Brown","CalendarTypeDesc":"Board Meeting","Description":"\u003cdiv class=\u0027eventBoardMeeting eventDetails\u0027\u003e\r\n\u003cdiv class=\u0027eventHeading\u0027\u003eBoard Meeting\u003c/div\u003e\r\n\u003cdiv class=\u0027eventLocation\u0027\u003eIPCB Office \n1021 N Grand Ave E - Room 1244 N (First Floor)\nSpringfield, Illinois\n- and -\nMICHAEL A BILANDIC BUILDING 160 N. LASALLE - Room N502 Chicago, Illinois\u003c/div\u003e\r\n\u003c/div\u003e\r\n","Location":"IPCB Office \n1021 N Grand Ave E - Room 1244 N (First Floor)\nSpringfield, Illinois\n- and -\nMICHAEL A BILANDIC BUILDING 160 N. LASALLE - Room N502 Chicago, Illinois","Cancelled":"","VC":"V","CaseNumber":"N/A","CaseId":0,"IsFullDay":false,"CalendarDescription":null},{"CalendarId":1081,"StartDateTime":"10/3/2024 11:00:00 AM","EndDateTime":"10/3/2024 11:00:00 AM","FullName":"Don Brown","CalendarTypeDesc":"Board Meeting","Description":"\u003cdiv class=\u0027eventBoardMeeting eventDetails\u0027\u003e\r\n\u003cdiv class=\u0027eventHeading\u0027\u003eBoard Meeting\u003c/div\u003e\r\n\u003cdiv class=\u0027eventLocation\u0027\u003eIPCB Office 1021 N Grand Ave E - Room 1244 N (First Floor) Springfield, Illinois - and - MICHAEL A BILANDIC BUILDING 160 N. LASALLE - Room N505 Chicago, Illinois\u003c/div\u003e\r\n\u003c/div\u003e\r\n","Location":"IPCB Office 1021 N Grand Ave E - Room 1244 N (First Floor) Springfield, Illinois - and - MICHAEL A BILANDIC BUILDING 160 N. LASALLE - Room N505 Chicago, Illinois","Cancelled":"","VC":"N","CaseNumber":"N/A","CaseId":0,"IsFullDay":false,"CalendarDescription":null},{"CalendarId":1082,"StartDateTime":"10/17/2024 11:00:00 AM","EndDateTime":"10/17/2024 11:00:00 AM","FullName":"Don Brown","CalendarTypeDesc":"Board Meeting","Description":"\u003cdiv class=\u0027eventBoardMeeting eventDetails\u0027\u003e\r\n\u003cdiv class=\u0027eventHeading\u0027\u003eBoard Meeting\u003c/div\u003e\r\n\u003cdiv class=\u0027eventLocation\u0027\u003eIPCB Office 1021 N Grand Ave E - Room 1244 N (First Floor) Springfield, Illinois - and - MICHAEL A BILANDIC BUILDING 160 N. LASALLE - Room N505 Chicago, Illinois\n\u003c/div\u003e\r\n\u003c/div\u003e\r\n","Location":"IPCB Office 1021 N Grand Ave E - Room 1244 N (First Floor) Springfield, Illinois - and - MICHAEL A BILANDIC BUILDING 160 N. LASALLE - Room N505 Chicago, Illinois\n","Cancelled":"","VC":"N","CaseNumber":"N/A","CaseId":0,"IsFullDay":false,"CalendarDescription":null},{"CalendarId":1083,"StartDateTime":"11/7/2024 11:00:00 AM","EndDateTime":"11/7/2024 11:00:00 AM","FullName":"Don Brown","CalendarTypeDesc":"Board Meeting","Description":"\u003cdiv class=\u0027eventBoardMeeting eventDetails\u0027\u003e\r\n\u003cdiv class=\u0027eventHeading\u0027\u003eBoard Meeting\u003c/div\u003e\r\n\u003cdiv class=\u0027eventLocation\u0027\u003eIPCB Office 1021 N Grand Ave E - Room 1244 N (First Floor) Springfield, Illinois - and - MICHAEL A BILANDIC BUILDING 160 N. LASALLE - Room N505 Chicago, Illinois\n\u003c/div\u003e\r\n\u003c/div\u003e\r\n","Location":"IPCB Office 1021 N Grand Ave E - Room 1244 N (First Floor) Springfield, Illinois - and - MICHAEL A BILANDIC BUILDING 160 N. LASALLE - Room N505 Chicago, Illinois\n","Cancelled":"","VC":"N","CaseNumber":"N/A","CaseId":0,"IsFullDay":false,"CalendarDescription":null},{"CalendarId":1084,"StartDateTime":"11/21/2024 11:00:00 AM","EndDateTime":"11/21/2024 11:00:00 AM","FullName":"Don Brown","CalendarTypeDesc":"Board Meeting","Description":"\u003cdiv class=\u0027eventBoardMeeting eventDetails\u0027\u003e\r\n\u003cdiv class=\u0027eventHeading\u0027\u003eBoard Meeting\u003c/div\u003e\r\n\u003cdiv class=\u0027eventLocation\u0027\u003eIPCB Office 1021 N Grand Ave E - Room 1244 N (First Floor) Springfield, Illinois - and - MICHAEL A BILANDIC BUILDING 160 N. LASALLE - Room N505 Chicago, Illinois\n\u003c/div\u003e\r\n\u003c/div\u003e\r\n","Location":"IPCB Office 1021 N Grand Ave E - Room 1244 N (First Floor) Springfield, Illinois - and - MICHAEL A BILANDIC BUILDING 160 N. LASALLE - Room N505 Chicago, Illinois\n","Cancelled":"","VC":"N","CaseNumber":"N/A","CaseId":0,"IsFullDay":false,"CalendarDescription":null},{"CalendarId":1085,"StartDateTime":"12/5/2024 11:00:00 AM","EndDateTime":"12/5/2024 11:00:00 AM","FullName":"Don Brown","CalendarTypeDesc":"Board Meeting","Description":"\u003cdiv class=\u0027eventBoardMeeting eventDetails\u0027\u003e\r\n\u003cdiv class=\u0027eventHeading\u0027\u003eBoard Meeting\u003c/div\u003e\r\n\u003cdiv class=\u0027eventLocation\u0027\u003eIPCB Office 1021 N Grand Ave E - Room 1244 N (First Floor) Springfield, Illinois - and - MICHAEL A BILANDIC BUILDING 160 N. LASALLE - Room N505 Chicago, Illinois\n\u003c/div\u003e\r\n\u003c/div\u003e\r\n","Location":"IPCB Office 1021 N Grand Ave E - Room 1244 N (First Floor) Springfield, Illinois - and - MICHAEL A BILANDIC BUILDING 160 N. LASALLE - Room N505 Chicago, Illinois\n","Cancelled":"","VC":"N","CaseNumber":"N/A","CaseId":0,"IsFullDay":false,"CalendarDescription":null},{"CalendarId":1086,"StartDateTime":"12/19/2024 11:00:00 AM","EndDateTime":"12/19/2024 11:00:00 AM","FullName":"Don Brown","CalendarTypeDesc":"Board Meeting","Description":"\u003cdiv class=\u0027eventBoardMeeting eventDetails\u0027\u003e\r\n\u003cdiv class=\u0027eventHeading\u0027\u003eBoard Meeting\u003c/div\u003e\r\n\u003cdiv class=\u0027eventLocation\u0027\u003eIPCB Office 1021 N Grand Ave E - Room 1244 N (First Floor) Springfield, Illinois - and - MICHAEL A BILANDIC BUILDING 160 N. LASALLE - Room C500 Chicago, Illinois\u003c/div\u003e\r\n\u003c/div\u003e\r\n","Location":"IPCB Office 1021 N Grand Ave E - Room 1244 N (First Floor) Springfield, Illinois - and - MICHAEL A BILANDIC BUILDING 160 N. LASALLE - Room C500 Chicago, Illinois","Cancelled":"","VC":"V","CaseNumber":"N/A","CaseId":0,"IsFullDay":false,"CalendarDescription":null},{"CalendarId":1076,"StartDateTime":"7/25/2024 11:00:00 AM","EndDateTime":"7/25/2024 11:00:00 AM","FullName":"Unavailable","CalendarTypeDesc":"Hearing PCB 1992-142 ","Description":"\u003cdiv class=\u0027eventHearing eventDetails\u0027\u003e\r\n\u003cdiv class=\u0027eventHeading\u0027\u003ePCB 1992-142 \u003c/div\u003e\r\n\u003cbr /\u003e\r\n\u003cdiv class=\u0027eventDescription\u0027\u003eIn the Matter of: Petition of Illinois Power Company (Clinton Power Station) for Hearing Pursuant to 35 Ill. Adm. Code 302.211(j) to Determine Specific Thermal Standards\u003c/div\u003e\r\n\u003cbr /\u003e\r\n\u003cdiv class=\u0027eventLocation\u0027\u003eDeWitt County Building\u003c/div\u003e\r\n\u003cbr /\u003e\r\n\u003ca href=\u0027/Cases/GetCaseDetailsById?caseId=2256\u0027\u003eClick here for details on this case\u003c/a\u003e\r\n\u003c/div\u003e\r\n","Location":"DeWitt County Building","Cancelled":"","VC":"","CaseNumber":"PCB 1992-142 ","CaseId":2256,"IsFullDay":false,"CalendarDescription":null},{"CalendarId":30956,"StartDateTime":"5/24/2023 10:00:00 AM","EndDateTime":"5/24/2023 10:00:00 AM","FullName":"Unavailable","CalendarTypeDesc":"Hearing PCB 2023-090 ","Description":"\u003cdiv class=\u0027eventHearing eventDetails\u0027\u003e\r\n\u003cdiv class=\u0027eventHeading\u0027\u003ePCB 2023-090 \u003c/div\u003e\r\n\u003cbr /\u003e\r\n\u003cdiv class=\u0027eventDescription\u0027\u003eJeet Singh d/b/a Aman Food \u0026 Gas v. Illinois Environmental Protection Agency\u003c/div\u003e\r\n\u003cbr /\u003e\r\n\u003cdiv class=\u0027eventLocation\u0027\u003eCANCELLED-Illinois Pollution Control Board Hearing Room\u003c/div\u003e\r\n\u003cbr /\u003e\r\n\u003ca href=\u0027/Cases/GetCaseDetailsById?caseId=17322\u0027\u003eClick here for details on this case\u003c/a\u003e\r\n\u003c/div\u003e\r\n","Location":"CANCELLED-Illinois Pollution Control Board Hearing Room","Cancelled":"","VC":"","CaseNumber":"PCB 2023-090 ","CaseId":17322,"IsFullDay":false,"CalendarDescription":null},{"CalendarId":30961,"StartDateTime":"5/15/2023 9:00:00 AM","EndDateTime":"5/15/2023 9:00:00 AM","FullName":"Unavailable","CalendarTypeDesc":"Hearing PCB 2013-015 ","Description":"\u003cdiv class=\u0027eventHearing eventDetails\u0027\u003e\r\n\u003cdiv class=\u0027eventHeading\u0027\u003ePCB 2013-015 \u003c/div\u003e\r\n\u003cbr /\u003e\r\n\u003cdiv class=\u0027eventDescription\u0027\u003eSierra Club, Environmental Law and Policy Center, Prairie Rivers Network, and Citizens Against Ruining the Environment v. Midwest Generation\u003c/div\u003e\r\n\u003cbr /\u003e\r\n\u003cdiv class=\u0027eventLocation\u0027\u003eMichael A. Bilandic Building\u003c/div\u003e\r\n\u003cbr /\u003e\r\n\u003ca href=\u0027/Cases/GetCaseDetailsById?caseId=14512\u0027\u003eClick here for details on this case\u003c/a\u003e\r\n\u003c/div\u003e\r\n","Location":"Michael A. Bilandic Building","Cancelled":"","VC":"","CaseNumber":"PCB 2013-015 ","CaseId":14512,"IsFullDay":false,"CalendarDescription":null},{"CalendarId":30962,"StartDateTime":"5/16/2023 9:00:00 AM","EndDateTime":"5/16/2023 9:00:00 AM","FullName":"Unavailable","CalendarTypeDesc":"Hearing PCB 2013-015 ","Description":"\u003cdiv class=\u0027eventHearing eventDetails\u0027\u003e\r\n\u003cdiv class=\u0027eventHeading\u0027\u003ePCB 2013-015 \u003c/div\u003e\r\n\u003cbr /\u003e\r\n\u003cdiv class=\u0027eventDescription\u0027\u003eSierra Club, Environmental Law and Policy Center, Prairie Rivers Network, and Citizens Against Ruining the Environment v. Midwest Generation\u003c/div\u003e\r\n\u003cbr /\u003e\r\n\u003cdiv class=\u0027eventLocation\u0027\u003eMichael A. Bilandic Building\u003c/div\u003e\r\n\u003cbr /\u003e\r\n\u003ca href=\u0027/Cases/GetCaseDetailsById?caseId=14512\u0027\u003eClick here for details on this case\u003c/a\u003e\r\n\u003c/div\u003e\r\n","Location":"Michael A. Bilandic Building","Cancelled":"","VC":"","CaseNumber":"PCB 2013-015 ","CaseId":14512,"IsFullDay":false,"CalendarDescription":null},{"CalendarId":30963,"StartDateTime":"5/17/2023 9:00:00 AM","EndDateTime":"5/17/2023 9:00:00 AM","FullName":"Unavailable","CalendarTypeDesc":"Hearing PCB 2013-015 ","Description":"\u003cdiv class=\u0027eventHearing eventDetails\u0027\u003e\r\n\u003cdiv class=\u0027eventHeading\u0027\u003ePCB 2013-015 \u003c/div\u003e\r\n\u003cbr /\u003e\r\n\u003cdiv class=\u0027eventDescription\u0027\u003eSierra Club, Environmental Law and Policy Center, Prairie Rivers Network, and Citizens Against Ruining the Environment v. Midwest Generation\u003c/div\u003e\r\n\u003cbr /\u003e\r\n\u003cdiv class=\u0027eventLocation\u0027\u003eMichael A. Bilandic Building\u003c/div\u003e\r\n\u003cbr /\u003e\r\n\u003ca href=\u0027/Cases/GetCaseDetailsById?caseId=14512\u0027\u003eClick here for details on this case\u003c/a\u003e\r\n\u003c/div\u003e\r\n","Location":"Michael A. Bilandic Building","Cancelled":"","VC":"","CaseNumber":"PCB 2013-015 ","CaseId":14512,"IsFullDay":false,"CalendarDescription":null},{"CalendarId":30964,"StartDateTime":"5/18/2023 9:00:00 AM","EndDateTime":"5/18/2023 9:00:00 AM","FullName":"Unavailable","CalendarTypeDesc":"Hearing PCB 2013-015 ","Description":"\u003cdiv class=\u0027eventHearing eventDetails\u0027\u003e\r\n\u003cdiv class=\u0027eventHeading\u0027\u003ePCB 2013-015 \u003c/div\u003e\r\n\u003cbr /\u003e\r\n\u003cdiv class=\u0027eventDescription\u0027\u003eSierra Club, Environmental Law and Policy Center, Prairie Rivers Network, and Citizens Against Ruining the Environment v. Midwest Generation\u003c/div\u003e\r\n\u003cbr /\u003e\r\n\u003cdiv class=\u0027eventLocation\u0027\u003eMichael A. Bilandic Building\u003c/div\u003e\r\n\u003cbr /\u003e\r\n\u003ca href=\u0027/Cases/GetCaseDetailsById?caseId=14512\u0027\u003eClick here for details on this case\u003c/a\u003e\r\n\u003c/div\u003e\r\n","Location":"Michael A. Bilandic Building","Cancelled":"","VC":"","CaseNumber":"PCB 2013-015 ","CaseId":14512,"IsFullDay":false,"CalendarDescription":null},{"CalendarId":30965,"StartDateTime":"5/19/2023 9:00:00 AM","EndDateTime":"5/19/2023 9:00:00 AM","FullName":"Unavailable","CalendarTypeDesc":"Hearing PCB 2013-015 ","Description":"\u003cdiv class=\u0027eventHearing eventDetails\u0027\u003e\r\n\u003cdiv class=\u0027eventHeading\u0027\u003ePCB 2013-015 \u003c/div\u003e\r\n\u003cbr /\u003e\r\n\u003cdiv class=\u0027eventDescription\u0027\u003eSierra Club, Environmental Law and Policy Center, Prairie Rivers Network, and Citizens Against Ruining the Environment v. Midwest Generation\u003c/div\u003e\r\n\u003cbr /\u003e\r\n\u003cdiv class=\u0027eventLocation\u0027\u003eMichael A. Bilandic Building\u003c/div\u003e\r\n\u003cbr /\u003e\r\n\u003ca href=\u0027/Cases/GetCaseDetailsById?caseId=14512\u0027\u003eClick here for details on this case\u003c/a\u003e\r\n\u003c/div\u003e\r\n","Location":"Michael A. Bilandic Building","Cancelled":"","VC":"","CaseNumber":"PCB 2013-015 ","CaseId":14512,"IsFullDay":false,"CalendarDescription":null},{"CalendarId":30966,"StartDateTime":"6/12/2023 9:00:00 AM","EndDateTime":"6/12/2023 9:00:00 AM","FullName":"Unavailable","CalendarTypeDesc":"Hearing PCB 2013-015 ","Description":"\u003cdiv class=\u0027eventHearing eventDetails\u0027\u003e\r\n\u003cdiv class=\u0027eventHeading\u0027\u003ePCB 2013-015 \u003c/div\u003e\r\n\u003cbr /\u003e\r\n\u003cdiv class=\u0027eventDescription\u0027\u003eSierra Club, Environmental Law and Policy Center, Prairie Rivers Network, and Citizens Against Ruining the Environment v. Midwest Generation\u003c/div\u003e\r\n\u003cbr /\u003e\r\n\u003cdiv class=\u0027eventLocation\u0027\u003eJames R. Thompson Center\u003c/div\u003e\r\n\u003cbr /\u003e\r\n\u003ca href=\u0027/Cases/GetCaseDetailsById?caseId=14512\u0027\u003eClick here for details on this case\u003c/a\u003e\r\n\u003c/div\u003e\r\n","Location":"James R. Thompson Center","Cancelled":"","VC":"","CaseNumber":"PCB 2013-015 ","CaseId":14512,"IsFullDay":false,"CalendarDescription":null},{"CalendarId":30967,"StartDateTime":"6/13/2023 9:00:00 AM","EndDateTime":"6/13/2023 9:00:00 AM","FullName":"Unavailable","CalendarTypeDesc":"Hearing PCB 2013-015 ","Description":"\u003cdiv class=\u0027eventHearing eventDetails\u0027\u003e\r\n\u003cdiv class=\u0027eventHeading\u0027\u003ePCB 2013-015 \u003c/div\u003e\r\n\u003cbr /\u003e\r\n\u003cdiv class=\u0027eventDescription\u0027\u003eSierra Club, Environmental Law and Policy Center, Prairie Rivers Network, and Citizens Against Ruining the Environment v. Midwest Generation\u003c/div\u003e\r\n\u003cbr /\u003e\r\n\u003cdiv class=\u0027eventLocation\u0027\u003eJames R. Thompson Center\u003c/div\u003e\r\n\u003cbr /\u003e\r\n\u003ca href=\u0027/Cases/GetCaseDetailsById?caseId=14512\u0027\u003eClick here for details on this case\u003c/a\u003e\r\n\u003c/div\u003e\r\n","Location":"James R. Thompson Center","Cancelled":"","VC":"","CaseNumber":"PCB 2013-015 ","CaseId":14512,"IsFullDay":false,"CalendarDescription":null},{"CalendarId":30968,"StartDateTime":"6/14/2023 9:00:00 AM","EndDateTime":"6/14/2023 9:00:00 AM","FullName":"Unavailable","CalendarTypeDesc":"Hearing PCB 2013-015 ","Description":"\u003cdiv class=\u0027eventHearing eventDetails\u0027\u003e\r\n\u003cdiv class=\u0027eventHeading\u0027\u003ePCB 2013-015 \u003c/div\u003e\r\n\u003cbr /\u003e\r\n\u003cdiv class=\u0027eventDescription\u0027\u003eSierra Club, Environmental Law and Policy Center, Prairie Rivers Network, and Citizens Against Ruining the Environment v. Midwest Generation\u003c/div\u003e\r\n\u003cbr /\u003e\r\n\u003cdiv class=\u0027eventLocation\u0027\u003eJames R. Thompson Center\u003c/div\u003e\r\n\u003cbr /\u003e\r\n\u003ca href=\u0027/Cases/GetCaseDetailsById?caseId=14512\u0027\u003eClick here for details on this case\u003c/a\u003e\r\n\u003c/div\u003e\r\n","Location":"James R. Thompson Center","Cancelled":"","VC":"","CaseNumber":"PCB 2013-015 ","CaseId":14512,"IsFullDay":false,"CalendarDescription":null},{"CalendarId":30969,"StartDateTime":"6/15/2023 9:00:00 AM","EndDateTime":"6/15/2023 9:00:00 AM","FullName":"Unavailable","CalendarTypeDesc":"Hearing PCB 2013-015 ","Description":"\u003cdiv class=\u0027eventHearing eventDetails\u0027\u003e\r\n\u003cdiv class=\u0027eventHeading\u0027\u003ePCB 2013-015 \u003c/div\u003e\r\n\u003cbr /\u003e\r\n\u003cdiv class=\u0027eventDescription\u0027\u003eSierra Club, Environmental Law and Policy Center, Prairie Rivers Network, and Citizens Against Ruining the Environment v. Midwest Generation\u003c/div\u003e\r\n\u003cbr /\u003e\r\n\u003cdiv class=\u0027eventLocation\u0027\u003eJames R. Thompson Center\u003c/div\u003e\r\n\u003cbr /\u003e\r\n\u003ca href=\u0027/Cases/GetCaseDetailsById?caseId=14512\u0027\u003eClick here for details on this case\u003c/a\u003e\r\n\u003c/div\u003e\r\n","Location":"James R. Thompson Center","Cancelled":"","VC":"","CaseNumber":"PCB 2013-015 ","CaseId":14512,"IsFullDay":false,"CalendarDescription":null},{"CalendarId":30970,"StartDateTime":"6/16/2023 9:00:00 AM","EndDateTime":"6/16/2023 9:00:00 AM","FullName":"Unavailable","CalendarTypeDesc":"Hearing PCB 2013-015 ","Description":"\u003cdiv class=\u0027eventHearing eventDetails\u0027\u003e\r\n\u003cdiv class=\u0027eventHeading\u0027\u003ePCB 2013-015 \u003c/div\u003e\r\n\u003cbr /\u003e\r\n\u003cdiv class=\u0027eventDescription\u0027\u003eSierra Club, Environmental Law and Policy Center, Prairie Rivers Network, and Citizens Against Ruining the Environment v. Midwest Generation\u003c/div\u003e\r\n\u003cbr /\u003e\r\n\u003cdiv class=\u0027eventLocation\u0027\u003eJames R. Thompson Center\u003c/div\u003e\r\n\u003cbr /\u003e\r\n\u003ca href=\u0027/Cases/GetCaseDetailsById?caseId=14512\u0027\u003eClick here for details on this case\u003c/a\u003e\r\n\u003c/div\u003e\r\n","Location":"James R. Thompson Center","Cancelled":"","VC":"","CaseNumber":"PCB 2013-015 ","CaseId":14512,"IsFullDay":false,"CalendarDescription":null},{"CalendarId":31037,"StartDateTime":"6/22/2023 10:00:00 AM","EndDateTime":"6/22/2023 10:00:00 AM","FullName":"Unavailable","CalendarTypeDesc":"Hearing PCB 2023-090 ","Description":"\u003cdiv class=\u0027eventHearing eventDetails\u0027\u003e\r\n\u003cdiv class=\u0027eventHeading\u0027\u003ePCB 2023-090 \u003c/div\u003e\r\n\u003cbr /\u003e\r\n\u003cdiv class=\u0027eventDescription\u0027\u003eJeet Singh d/b/a Aman Food \u0026 Gas v. Illinois Environmental Protection Agency\u003c/div\u003e\r\n\u003cbr /\u003e\r\n\u003cdiv class=\u0027eventLocation\u0027\u003eIllinois Pollution Control Board Hearing Room\u003c/div\u003e\r\n\u003cbr /\u003e\r\n\u003ca href=\u0027/Cases/GetCaseDetailsById?caseId=17322\u0027\u003eClick here for details on this case\u003c/a\u003e\r\n\u003c/div\u003e\r\n","Location":"Illinois Pollution Control Board Hearing Room","Cancelled":"","VC":"","CaseNumber":"PCB 2023-090 ","CaseId":17322,"IsFullDay":false,"CalendarDescription":null},{"CalendarId":31040,"StartDateTime":"5/31/2023 10:00:00 AM","EndDateTime":"5/31/2023 10:00:00 AM","FullName":"Unavailable","CalendarTypeDesc":"Hearing PCB 2023-115 ","Description":"\u003cdiv class=\u0027eventHearing eventDetails\u0027\u003e\r\n\u003cdiv class=\u0027eventHeading\u0027\u003ePCB 2023-115 \u003c/div\u003e\r\n\u003cbr /\u003e\r\n\u003cdiv class=\u0027eventDescription\u0027\u003ePeople of the State of Illinois v Jay Shri Ganesha, Inc., an Illinois corporation, d/b/a Shivam Energy, Inc. and d/b/a Marathon Gas\u003c/div\u003e\r\n\u003cbr /\u003e\r\n\u003cdiv class=\u0027eventLocation\u0027\u003eTeleconference \u003c/div\u003e\r\n\u003cbr /\u003e\r\n\u003ca href=\u0027/Cases/GetCaseDetailsById?caseId=17355\u0027\u003eClick here for details on this case\u003c/a\u003e\r\n\u003c/div\u003e\r\n","Location":"Teleconference ","Cancelled":"","VC":"","CaseNumber":"PCB 2023-115 ","CaseId":17355,"IsFullDay":false,"CalendarDescription":null},{"CalendarId":32107,"StartDateTime":"8/17/2023 11:30:00 AM","EndDateTime":"8/17/2023 11:30:00 AM","FullName":"Unavailable","CalendarTypeDesc":"Hearing R2023-015 ","Description":"\u003cdiv class=\u0027eventHearing eventDetails\u0027\u003e\r\n\u003cdiv class=\u0027eventHeading\u0027\u003eR2023-015 \u003c/div\u003e\r\n\u003cbr /\u003e\r\n\u003cdiv class=\u0027eventDescription\u0027\u003eNational Ambient Air Quality Standards, USEPA Regulations (July 1, 2022 through December 31, 2022)\u003c/div\u003e\r\n\u003cbr /\u003e\r\n\u003cdiv class=\u0027eventLocation\u0027\u003eJames R. Thompson Center BY VIDEOCONFERENCE\u003c/div\u003e\r\n\u003cbr /\u003e\r\n\u003ca href=\u0027/Cases/GetCaseDetailsById?caseId=17176\u0027\u003eClick here for details on this case\u003c/a\u003e\r\n\u003c/div\u003e\r\n","Location":"James R. Thompson Center BY VIDEOCONFERENCE","Cancelled":"","VC":"","CaseNumber":"R2023-015 ","CaseId":17176,"IsFullDay":false,"CalendarDescription":null},{"CalendarId":32110,"StartDateTime":"8/17/2023 11:30:00 AM","EndDateTime":"8/17/2023 11:30:00 AM","FullName":"Unavailable","CalendarTypeDesc":"Hearing R2023-015 ","Description":"\u003cdiv class=\u0027eventHearing eventDetails\u0027\u003e\r\n\u003cdiv class=\u0027eventHeading\u0027\u003eR2023-015 \u003c/div\u003e\r\n\u003cbr /\u003e\r\n\u003cdiv class=\u0027eventDescription\u0027\u003eNational Ambient Air Quality Standards, USEPA Regulations (July 1, 2022 through December 31, 2022)\u003c/div\u003e\r\n\u003cbr /\u003e\r\n\u003cdiv class=\u0027eventLocation\u0027\u003eIEPA Building BY VIDEOCONFERENCE\u003c/div\u003e\r\n\u003cbr /\u003e\r\n\u003ca href=\u0027/Cases/GetCaseDetailsById?caseId=17176\u0027\u003eClick here for details on this case\u003c/a\u003e\r\n\u003c/div\u003e\r\n","Location":"IEPA Building BY VIDEOCONFERENCE","Cancelled":"","VC":"","CaseNumber":"R2023-015 ","CaseId":17176,"IsFullDay":false,"CalendarDescription":null},{"CalendarId":32162,"StartDateTime":"9/28/2023 9:00:00 AM","EndDateTime":"9/28/2023 9:00:00 AM","FullName":"Unavailable","CalendarTypeDesc":"Hearing PCB 2023-107 ","Description":"\u003cdiv class=\u0027eventHearing eventDetails\u0027\u003e\r\n\u003cdiv class=\u0027eventHeading\u0027\u003ePCB 2023-107 \u003c/div\u003e\r\n\u003cbr /\u003e\r\n\u003cdiv class=\u0027eventDescription\u0027\u003eProtect West Chicago v. City of West Chicago, West Chicago City Council, and Lakeshore Recycling Systems, LLC (Consolidated PCB 23-109)\u003c/div\u003e\r\n\u003cbr /\u003e\r\n\u003cdiv class=\u0027eventLocation\u0027\u003eWest Chicago City Hall\u003c/div\u003e\r\n\u003cbr /\u003e\r\n\u003ca href=\u0027/Cases/GetCaseDetailsById?caseId=17341\u0027\u003eClick here for details on this case\u003c/a\u003e\r\n\u003c/div\u003e\r\n","Location":"West Chicago City Hall","Cancelled":"","VC":"","CaseNumber":"PCB 2023-107 ","CaseId":17341,"IsFullDay":false,"CalendarDescription":null},{"CalendarId":32163,"StartDateTime":"9/28/2023 9:00:00 AM","EndDateTime":"9/28/2023 9:00:00 AM","FullName":"Unavailable","CalendarTypeDesc":"Hearing PCB 2023-109 ","Description":"\u003cdiv class=\u0027eventHearing eventDetails\u0027\u003e\r\n\u003cdiv class=\u0027eventHeading\u0027\u003ePCB 2023-109 \u003c/div\u003e\r\n\u003cbr /\u003e\r\n\u003cdiv class=\u0027eventDescription\u0027\u003ePeople Opposing DuPage Environmental Racism v. City of West Chicago and Lakeshore Recycling Systems (Consolidated PCB 23-107) \u003c/div\u003e\r\n\u003cbr /\u003e\r\n\u003cdiv class=\u0027eventLocation\u0027\u003eWest Chicago City Hall\u003c/div\u003e\r\n\u003cbr /\u003e\r\n\u003ca href=\u0027/Cases/GetCaseDetailsById?caseId=17345\u0027\u003eClick here for details on this case\u003c/a\u003e\r\n\u003c/div\u003e\r\n","Location":"West Chicago City Hall","Cancelled":"","VC":"","CaseNumber":"PCB 2023-109 ","CaseId":17345,"IsFullDay":false,"CalendarDescription":null},{"CalendarId":32164,"StartDateTime":"9/27/2023 9:00:00 AM","EndDateTime":"9/27/2023 9:00:00 AM","FullName":"Unavailable","CalendarTypeDesc":"Hearing R2023-018(A) ","Description":"\u003cdiv class=\u0027eventHearing eventDetails\u0027\u003e\r\n\u003cdiv class=\u0027eventHeading\u0027\u003eR2023-018(A) \u003c/div\u003e\r\n\u003cbr /\u003e\r\n\u003cdiv class=\u0027eventDescription\u0027\u003eIn the Matter of: Amendments to 35 Ill. Adm. Code Parts 201, 202, and 212\u003c/div\u003e\r\n\u003cbr /\u003e\r\n\u003cdiv class=\u0027eventLocation\u0027\u003eIllinois Environmental Protection Agency\u003c/div\u003e\r\n\u003cbr /\u003e\r\n\u003ca href=\u0027/Cases/GetCaseDetailsById?caseId=17346\u0027\u003eClick here for details on this case\u003c/a\u003e\r\n\u003c/div\u003e\r\n","Location":"Illinois Environmental Protection Agency","Cancelled":"","VC":"","CaseNumber":"R2023-018(A) ","CaseId":17346,"IsFullDay":false,"CalendarDescription":null},{"CalendarId":32165,"StartDateTime":"11/1/2023 9:00:00 AM","EndDateTime":"11/1/2023 9:00:00 AM","FullName":"Unavailable","CalendarTypeDesc":"Hearing R2023-018(A) ","Description":"\u003cdiv class=\u0027eventHearing eventDetails\u0027\u003e\r\n\u003cdiv class=\u0027eventHeading\u0027\u003eR2023-018(A) \u003c/div\u003e\r\n\u003cbr /\u003e\r\n\u003cdiv class=\u0027eventDescription\u0027\u003eIn the Matter of: Amendments to 35 Ill. Adm. Code Parts 201, 202, and 212\u003c/div\u003e\r\n\u003cbr /\u003e\r\n\u003cdiv class=\u0027eventLocation\u0027\u003eMichael A. Bilandic Building \u003c/div\u003e\r\n\u003cbr /\u003e\r\n\u003ca href=\u0027/Cases/GetCaseDetailsById?caseId=17346\u0027\u003eClick here for details on this case\u003c/a\u003e\r\n\u003c/div\u003e\r\n","Location":"Michael A. Bilandic Building ","Cancelled":"","VC":"","CaseNumber":"R2023-018(A) ","CaseId":17346,"IsFullDay":false,"CalendarDescription":null},{"CalendarId":33239,"StartDateTime":"11/20/2023 10:30:00 AM","EndDateTime":"11/20/2023 10:30:00 AM","FullName":"Unavailable","CalendarTypeDesc":"Hearing PCB 2020-010 ","Description":"\u003cdiv class=\u0027eventHearing eventDetails\u0027\u003e\r\n\u003cdiv class=\u0027eventHeading\u0027\u003ePCB 2020-010 \u003c/div\u003e\r\n\u003cbr /\u003e\r\n\u003cdiv class=\u0027eventDescription\u0027\u003eMarek Kruk v. New Trier High School\u003c/div\u003e\r\n\u003cbr /\u003e\r\n\u003cdiv class=\u0027eventLocation\u0027\u003eelephonic Status Conference\u003c/div\u003e\r\n\u003cbr /\u003e\r\n\u003ca href=\u0027/Cases/GetCaseDetailsById?caseId=16789\u0027\u003eClick here for details on this case\u003c/a\u003e\r\n\u003c/div\u003e\r\n","Location":"elephonic Status Conference","Cancelled":"","VC":"","CaseNumber":"PCB 2020-010 ","CaseId":16789,"IsFullDay":false,"CalendarDescription":null},{"CalendarId":33245,"StartDateTime":"12/7/2023 11:30:00 AM","EndDateTime":"12/7/2023 11:30:00 AM","FullName":"Unavailable","CalendarTypeDesc":"Hearing R2024-008 ","Description":"\u003cdiv class=\u0027eventHearing eventDetails\u0027\u003e\r\n\u003cdiv class=\u0027eventHeading\u0027\u003eR2024-008 \u003c/div\u003e\r\n\u003cbr /\u003e\r\n\u003cdiv class=\u0027eventDescription\u0027\u003eDefinition of VOM Update, USEPA Amendments (January 1, 2023 through June 30, 2023)\u003c/div\u003e\r\n\u003cbr /\u003e\r\n\u003cdiv class=\u0027eventLocation\u0027\u003eMichael A. Bilandic Building-by videoconference\u003c/div\u003e\r\n\u003cbr /\u003e\r\n\u003ca href=\u0027/Cases/GetCaseDetailsById?caseId=17371\u0027\u003eClick here for details on this case\u003c/a\u003e\r\n\u003c/div\u003e\r\n","Location":"Michael A. Bilandic Building-by videoconference","Cancelled":"","VC":"","CaseNumber":"R2024-008 ","CaseId":17371,"IsFullDay":false,"CalendarDescription":null},{"CalendarId":33246,"StartDateTime":"12/7/2023 11:30:00 AM","EndDateTime":"12/7/2023 11:30:00 AM","FullName":"Unavailable","CalendarTypeDesc":"Hearing R2024-008 ","Description":"\u003cdiv class=\u0027eventHearing eventDetails\u0027\u003e\r\n\u003cdiv class=\u0027eventHeading\u0027\u003eR2024-008 \u003c/div\u003e\r\n\u003cbr /\u003e\r\n\u003cdiv class=\u0027eventDescription\u0027\u003eDefinition of VOM Update, USEPA Amendments (January 1, 2023 through June 30, 2023)\u003c/div\u003e\r\n\u003cbr /\u003e\r\n\u003cdiv class=\u0027eventLocation\u0027\u003eIllinois Pollution Control Board\u003c/div\u003e\r\n\u003cbr /\u003e\r\n\u003ca href=\u0027/Cases/GetCaseDetailsById?caseId=17371\u0027\u003eClick here for details on this case\u003c/a\u003e\r\n\u003c/div\u003e\r\n","Location":"Illinois Pollution Control Board","Cancelled":"","VC":"","CaseNumber":"R2024-008 ","CaseId":17371,"IsFullDay":false,"CalendarDescription":null},{"CalendarId":33247,"StartDateTime":"2/22/2024 10:00:00 AM","EndDateTime":"2/22/2024 10:00:00 AM","FullName":"Unavailable","CalendarTypeDesc":"Hearing PCB 2021-007 ","Description":"\u003cdiv class=\u0027eventHearing eventDetails\u0027\u003e\r\n\u003cdiv class=\u0027eventHeading\u0027\u003ePCB 2021-007 \u003c/div\u003e\r\n\u003cbr /\u003e\r\n\u003cdiv class=\u0027eventDescription\u0027\u003eGeneral III, LLC, v. Illinois Environmental Protection Agency\u003c/div\u003e\r\n\u003cbr /\u003e\r\n\u003cdiv class=\u0027eventLocation\u0027\u003eTeleconference \u003c/div\u003e\r\n\u003cbr /\u003e\r\n\u003ca href=\u0027/Cases/GetCaseDetailsById?caseId=16917\u0027\u003eClick here for details on this case\u003c/a\u003e\r\n\u003c/div\u003e\r\n","Location":"Teleconference ","Cancelled":"","VC":"","CaseNumber":"PCB 2021-007 ","CaseId":16917,"IsFullDay":false,"CalendarDescription":null},{"CalendarId":33248,"StartDateTime":"12/6/2023 11:00:00 AM","EndDateTime":"12/6/2023 11:00:00 AM","FullName":"Unavailable","CalendarTypeDesc":"Hearing R2023-018(A) ","Description":"\u003cdiv class=\u0027eventHearing eventDetails\u0027\u003e\r\n\u003cdiv class=\u0027eventHeading\u0027\u003eR2023-018(A) \u003c/div\u003e\r\n\u003cbr /\u003e\r\n\u003cdiv class=\u0027eventDescription\u0027\u003eIn the Matter of: Amendments to 35 Ill. Adm. Code Parts 201, 202, and 212\u003c/div\u003e\r\n\u003cbr /\u003e\r\n\u003cdiv class=\u0027eventLocation\u0027\u003eCANCELLED-PREHEARING TELECONFERENCE\u003c/div\u003e\r\n\u003cbr /\u003e\r\n\u003ca href=\u0027/Cases/GetCaseDetailsById?caseId=17346\u0027\u003eClick here for details on this case\u003c/a\u003e\r\n\u003c/div\u003e\r\n","Location":"CANCELLED-PREHEARING TELECONFERENCE","Cancelled":"","VC":"","CaseNumber":"R2023-018(A) ","CaseId":17346,"IsFullDay":false,"CalendarDescription":null},{"CalendarId":33271,"StartDateTime":"2/7/2024 11:00:00 AM","EndDateTime":"2/7/2024 11:00:00 AM","FullName":"Unavailable","CalendarTypeDesc":"Hearing R2023-018(A) ","Description":"\u003cdiv class=\u0027eventHearing eventDetails\u0027\u003e\r\n\u003cdiv class=\u0027eventHeading\u0027\u003eR2023-018(A) \u003c/div\u003e\r\n\u003cbr /\u003e\r\n\u003cdiv class=\u0027eventDescription\u0027\u003eIn the Matter of: Amendments to 35 Ill. Adm. Code Parts 201, 202, and 212\u003c/div\u003e\r\n\u003cbr /\u003e\r\n\u003cdiv class=\u0027eventLocation\u0027\u003ePREHEARING TELECONFERENCE\u003c/div\u003e\r\n\u003cbr /\u003e\r\n\u003ca href=\u0027/Cases/GetCaseDetailsById?caseId=17346\u0027\u003eClick here for details on this case\u003c/a\u003e\r\n\u003c/div\u003e\r\n","Location":"PREHEARING TELECONFERENCE","Cancelled":"","VC":"","CaseNumber":"R2023-018(A) ","CaseId":17346,"IsFullDay":false,"CalendarDescription":null},{"CalendarId":33290,"StartDateTime":"2/13/2024 9:00:00 AM","EndDateTime":"2/13/2024 9:00:00 AM","FullName":"Unavailable","CalendarTypeDesc":"Hearing AS 2021-003 ","Description":"\u003cdiv class=\u0027eventHearing eventDetails\u0027\u003e\r\n\u003cdiv class=\u0027eventHeading\u0027\u003eAS 2021-003 \u003c/div\u003e\r\n\u003cbr /\u003e\r\n\u003cdiv class=\u0027eventDescription\u0027\u003eIn the Matter of: Midwest Generation LLC’s Petition for an Adjusted Standard and Finding of Inapplicability for the Waukegan Station\u003c/div\u003e\r\n\u003cbr /\u003e\r\n\u003cdiv class=\u0027eventLocation\u0027\u003eWaukegan City Hall City Council Chambers\u003c/div\u003e\r\n\u003cbr /\u003e\r\n\u003ca href=\u0027/Cases/GetCaseDetailsById?caseId=17032\u0027\u003eClick here for details on this case\u003c/a\u003e\r\n\u003c/div\u003e\r\n","Location":"Waukegan City Hall City Council Chambers","Cancelled":"","VC":"","CaseNumber":"AS 2021-003 ","CaseId":17032,"IsFullDay":false,"CalendarDescription":null},{"CalendarId":33291,"StartDateTime":"2/14/2024 9:00:00 AM","EndDateTime":"2/14/2024 9:00:00 AM","FullName":"Unavailable","CalendarTypeDesc":"Hearing AS 2021-003 ","Description":"\u003cdiv class=\u0027eventHearing eventDetails\u0027\u003e\r\n\u003cdiv class=\u0027eventHeading\u0027\u003eAS 2021-003 \u003c/div\u003e\r\n\u003cbr /\u003e\r\n\u003cdiv class=\u0027eventDescription\u0027\u003eIn the Matter of: Midwest Generation LLC’s Petition for an Adjusted Standard and Finding of Inapplicability for the Waukegan Station\u003c/div\u003e\r\n\u003cbr /\u003e\r\n\u003cdiv class=\u0027eventLocation\u0027\u003eWaukegan City Hall City Council Chambers, 2nd Floor\u003c/div\u003e\r\n\u003cbr /\u003e\r\n\u003ca href=\u0027/Cases/GetCaseDetailsById?caseId=17032\u0027\u003eClick here for details on this case\u003c/a\u003e\r\n\u003c/div\u003e\r\n","Location":"Waukegan City Hall City Council Chambers, 2nd Floor","Cancelled":"","VC":"","CaseNumber":"AS 2021-003 ","CaseId":17032,"IsFullDay":false,"CalendarDescription":null},{"CalendarId":33307,"StartDateTime":"3/21/2024 10:30:00 AM","EndDateTime":"3/21/2024 10:30:00 AM","FullName":"Unavailable","CalendarTypeDesc":"Hearing PCB 2024-037 ","Description":"\u003cdiv class=\u0027eventHearing eventDetails\u0027\u003e\r\n\u003cdiv class=\u0027eventHeading\u0027\u003ePCB 2024-037 \u003c/div\u003e\r\n\u003cbr /\u003e\r\n\u003cdiv class=\u0027eventDescription\u0027\u003ePeople of the State of Illinois v. Enterprise ANS LLC\u003c/div\u003e\r\n\u003cbr /\u003e\r\n\u003cdiv class=\u0027eventLocation\u0027\u003eelephonic Status Conference\u003c/div\u003e\r\n\u003cbr /\u003e\r\n\u003ca href=\u0027/Cases/GetCaseDetailsById?caseId=17443\u0027\u003eClick here for details on this case\u003c/a\u003e\r\n\u003c/div\u003e\r\n","Location":"elephonic Status Conference","Cancelled":"","VC":"","CaseNumber":"PCB 2024-037 ","CaseId":17443,"IsFullDay":false,"CalendarDescription":null},{"CalendarId":33313,"StartDateTime":"2/29/2024 10:00:00 AM","EndDateTime":"2/29/2024 10:00:00 AM","FullName":"Unavailable","CalendarTypeDesc":"Hearing PCB 2024-033 ","Description":"\u003cdiv class=\u0027eventHearing eventDetails\u0027\u003e\r\n\u003cdiv class=\u0027eventHeading\u0027\u003ePCB 2024-033 \u003c/div\u003e\r\n\u003cbr /\u003e\r\n\u003cdiv class=\u0027eventDescription\u0027\u003ePeople of the State of Illinois v. City of LaSalle\u003c/div\u003e\r\n\u003cbr /\u003e\r\n\u003cdiv class=\u0027eventLocation\u0027\u003eLaSalle County Courthouse\u003c/div\u003e\r\n\u003cbr /\u003e\r\n\u003ca href=\u0027/Cases/GetCaseDetailsById?caseId=17430\u0027\u003eClick here for details on this case\u003c/a\u003e\r\n\u003c/div\u003e\r\n","Location":"LaSalle County Courthouse","Cancelled":"","VC":"","CaseNumber":"PCB 2024-033 ","CaseId":17430,"IsFullDay":false,"CalendarDescription":null},{"CalendarId":33337,"StartDateTime":"2/28/2024 11:00:00 AM","EndDateTime":"2/28/2024 11:00:00 AM","FullName":"Unavailable","CalendarTypeDesc":"Hearing R2023-018(A) ","Description":"\u003cdiv class=\u0027eventHearing eventDetails\u0027\u003e\r\n\u003cdiv class=\u0027eventHeading\u0027\u003eR2023-018(A) \u003c/div\u003e\r\n\u003cbr /\u003e\r\n\u003cdiv class=\u0027eventDescription\u0027\u003eIn the Matter of: Amendments to 35 Ill. Adm. Code Parts 201, 202, and 212\u003c/div\u003e\r\n\u003cbr /\u003e\r\n\u003cdiv class=\u0027eventLocation\u0027\u003ePREHEARING TELECONFERENCE\u003c/div\u003e\r\n\u003cbr /\u003e\r\n\u003ca href=\u0027/Cases/GetCaseDetailsById?caseId=17346\u0027\u003eClick here for details on this case\u003c/a\u003e\r\n\u003c/div\u003e\r\n","Location":"PREHEARING TELECONFERENCE","Cancelled":"","VC":"","CaseNumber":"R2023-018(A) ","CaseId":17346,"IsFullDay":false,"CalendarDescription":null},{"CalendarId":33338,"StartDateTime":"4/10/2024 10:00:00 AM","EndDateTime":"4/10/2024 10:00:00 AM","FullName":"Unavailable","CalendarTypeDesc":"Hearing PCB 2024-032 ","Description":"\u003cdiv class=\u0027eventHearing eventDetails\u0027\u003e\r\n\u003cdiv class=\u0027eventHeading\u0027\u003ePCB 2024-032 \u003c/div\u003e\r\n\u003cbr /\u003e\r\n\u003cdiv class=\u0027eventDescription\u0027\u003e1441 Kingshighway, LLC v. Illinois Environmental Protection Agency\u003c/div\u003e\r\n\u003cbr /\u003e\r\n\u003cdiv class=\u0027eventLocation\u0027\u003eIllinois Pollution Control Board Hearing Room\u003c/div\u003e\r\n\u003cbr /\u003e\r\n\u003ca href=\u0027/Cases/GetCaseDetailsById?caseId=17429\u0027\u003eClick here for details on this case\u003c/a\u003e\r\n\u003c/div\u003e\r\n","Location":"Illinois Pollution Control Board Hearing Room","Cancelled":"","VC":"","CaseNumber":"PCB 2024-032 ","CaseId":17429,"IsFullDay":false,"CalendarDescription":null},{"CalendarId":33368,"StartDateTime":"4/15/2024 10:00:00 AM","EndDateTime":"4/15/2024 10:00:00 AM","FullName":"Unavailable","CalendarTypeDesc":"Hearing R2023-018(A) ","Description":"\u003cdiv class=\u0027eventHearing eventDetails\u0027\u003e\r\n\u003cdiv class=\u0027eventHeading\u0027\u003eR2023-018(A) \u003c/div\u003e\r\n\u003cbr /\u003e\r\n\u003cdiv class=\u0027eventDescription\u0027\u003eIn the Matter of: Amendments to 35 Ill. Adm. Code Parts 201, 202, and 212\u003c/div\u003e\r\n\u003cbr /\u003e\r\n\u003cdiv class=\u0027eventLocation\u0027\u003eMichael A. Bilandic Building\u003c/div\u003e\r\n\u003cbr /\u003e\r\n\u003ca href=\u0027/Cases/GetCaseDetailsById?caseId=17346\u0027\u003eClick here for details on this case\u003c/a\u003e\r\n\u003c/div\u003e\r\n","Location":"Michael A. Bilandic Building","Cancelled":"","VC":"","CaseNumber":"R2023-018(A) ","CaseId":17346,"IsFullDay":false,"CalendarDescription":null},{"CalendarId":33372,"StartDateTime":"4/18/2024 11:30:00 AM","EndDateTime":"4/18/2024 11:30:00 AM","FullName":"Unavailable","CalendarTypeDesc":"Hearing R2024-015 ","Description":"\u003cdiv class=\u0027eventHearing eventDetails\u0027\u003e\r\n\u003cdiv class=\u0027eventHeading\u0027\u003eR2024-015 \u003c/div\u003e\r\n\u003cbr /\u003e\r\n\u003cdiv class=\u0027eventDescription\u0027\u003eNational Ambient Air Quality Standards, USEPA Regulations Amendments (July 1, 2023 through December 31, 2023)\u003c/div\u003e\r\n\u003cbr /\u003e\r\n\u003cdiv class=\u0027eventLocation\u0027\u003eMichael A. Bilandic Building - VIDEOCONFERENCE\u003c/div\u003e\r\n\u003cbr /\u003e\r\n\u003ca href=\u0027/Cases/GetCaseDetailsById?caseId=17439\u0027\u003eClick here for details on this case\u003c/a\u003e\r\n\u003c/div\u003e\r\n","Location":"Michael A. Bilandic Building - VIDEOCONFERENCE","Cancelled":"","VC":"","CaseNumber":"R2024-015 ","CaseId":17439,"IsFullDay":false,"CalendarDescription":null},{"CalendarId":33373,"StartDateTime":"4/18/2024 11:30:00 AM","EndDateTime":"4/18/2024 11:30:00 AM","FullName":"Unavailable","CalendarTypeDesc":"Hearing R2024-015 ","Description":"\u003cdiv class=\u0027eventHearing eventDetails\u0027\u003e\r\n\u003cdiv class=\u0027eventHeading\u0027\u003eR2024-015 \u003c/div\u003e\r\n\u003cbr /\u003e\r\n\u003cdiv class=\u0027eventDescription\u0027\u003eNational Ambient Air Quality Standards, USEPA Regulations Amendments (July 1, 2023 through December 31, 2023)\u003c/div\u003e\r\n\u003cbr /\u003e\r\n\u003cdiv class=\u0027eventLocation\u0027\u003eMichael A. Bilandic Building - VIDEOCONFERENCE\u003c/div\u003e\r\n\u003cbr /\u003e\r\n\u003ca href=\u0027/Cases/GetCaseDetailsById?caseId=17439\u0027\u003eClick here for details on this case\u003c/a\u003e\r\n\u003c/div\u003e\r\n","Location":"Michael A. Bilandic Building - VIDEOCONFERENCE","Cancelled":"","VC":"","CaseNumber":"R2024-015 ","CaseId":17439,"IsFullDay":false,"CalendarDescription":null},{"CalendarId":33431,"StartDateTime":"7/25/2024 10:00:00 AM","EndDateTime":"7/25/2024 10:00:00 AM","FullName":"Unavailable","CalendarTypeDesc":"Hearing PCB 2006-060 ","Description":"\u003cdiv class=\u0027eventHearing eventDetails\u0027\u003e\r\n\u003cdiv class=\u0027eventHeading\u0027\u003ePCB 2006-060 \u003c/div\u003e\r\n\u003cbr /\u003e\r\n\u003cdiv class=\u0027eventDescription\u0027\u003eMidwest Generation LLC Will County Generating Station v. IEPA\u003c/div\u003e\r\n\u003cbr /\u003e\r\n\u003cdiv class=\u0027eventLocation\u0027\u003eelephonic Status Conference\u003c/div\u003e\r\n\u003cbr /\u003e\r\n\u003ca href=\u0027/Cases/GetCaseDetailsById?caseId=12774\u0027\u003eClick here for details on this case\u003c/a\u003e\r\n\u003c/div\u003e\r\n","Location":"elephonic Status Conference","Cancelled":"","VC":"","CaseNumber":"PCB 2006-060 ","CaseId":12774,"IsFullDay":false,"CalendarDescription":null}] diff --git a/tests/test_il_pollution_control.py b/tests/test_il_pollution_control.py index dd81729f7..8c0b15dbd 100644 --- a/tests/test_il_pollution_control.py +++ b/tests/test_il_pollution_control.py @@ -2,7 +2,7 @@ from os.path import dirname, join import pytest -from city_scrapers_core.constants import BOARD, CANCELLED, PASSED, TENTATIVE +from city_scrapers_core.constants import BOARD, PASSED from city_scrapers_core.utils import file_response from freezegun import freeze_time @@ -14,80 +14,68 @@ ) spider = IlPollutionControlSpider() -freezer = freeze_time("2019-10-03") +freezer = freeze_time(datetime(2024, 5, 8, 11, 10)) freezer.start() -parsed_items = [item for item in spider._parse_json(test_response)] -spider.minutes_map = { - datetime( - 2019, 1, 17 - ).date(): "https://pcb.illinois.gov/documents/dsweb/Get/Document-99687/1-17-2019 draft2.pdf" # noqa -} -spider.agenda_map = { - datetime( - 2019, 10, 3 - ).date(): "https://pcb.illinois.gov/documents/dsweb/Get/Document-53692/" -} - -for item in parsed_items: - item["links"] = spider._parse_links(item) - +parsed_items = [item for item in spider.parse(test_response)] +parsed_item = parsed_items[0] freezer.stop() -def test_count(): - assert len(parsed_items) == 30 +def test_title(): + assert parsed_item["title"] == "Board Meeting" -@pytest.mark.parametrize("item", parsed_items) -def test_title(item): - assert item["title"] == "Board Meeting" +def test_description(): + assert ( + parsed_item["description"] + == "Board Meeting IPCB Office 1021 N Grand Ave E - Room 1244 N (First Floor)Springfield, Illinois- and -MICHAEL A BILANDIC BUILDING160 N. LASALLE - Room N505Chicago, Illinois" # noqa + ) def test_start(): - assert parsed_items[0]["start"] == datetime(2019, 5, 23, 11, 0) + assert parsed_item["start"] == datetime(2023, 5, 18, 11, 0) -@pytest.mark.parametrize("item", parsed_items) -def test_end(item): - assert item["end"] is None +def test_end(): + assert parsed_item["end"] == datetime(2023, 5, 18, 11, 0) + + +def test_time_notes(): + assert parsed_item["time_notes"] == "" def test_id(): - assert parsed_items[0]["id"] == "il_pollution_control/201905231100/x/board_meeting" + assert parsed_item["id"] == "il_pollution_control/202305181100/x/board_meeting" def test_status(): - expected_counts = {CANCELLED: 2, PASSED: 22, TENTATIVE: 6} - actual_counts = {} - for key in expected_counts: - actual_counts[key] = len( - [item for item in parsed_items if item["status"] == key] - ) - assert actual_counts[key] == expected_counts[key] + assert parsed_item["status"] == PASSED -@pytest.mark.parametrize("item", parsed_items) -def test_location(item): - assert item["location"]["name"] == "Chicago IPCB Office" +def test_location(): + assert parsed_item["location"] == { + "name": "", + "address": "IPCB Office \n1021 N Grand Ave E - Room 1244 N (First Floor)\nSpringfield, Illinois\n- and -\nMICHAEL A BILANDIC BUILDING\n160 N. LASALLE - Room N505\nChicago, Illinois", # noqa + } -@pytest.mark.parametrize("item", parsed_items) -def test_source(item): - assert item["source"] == "https://pcb.illinois.gov/ClerksOffice/Calendar" +def test_source(): + assert parsed_item["source"] == "https://pcb.illinois.gov/ClerksOffice/Calendar" def test_links(): - minutes_url = "https://pcb.illinois.gov/documents/dsweb/Get/Document-99687/1-17-2019 draft2.pdf" # noqa - assert parsed_items[2]["links"][0]["href"] == minutes_url + assert parsed_item["links"] == [ + {"title": "Agendas", "href": "https://pcb.illinois.gov/CurrentAgendas"}, + { + "title": "Meeting minutes", + "href": "https://pcb.illinois.gov/ClerksOffice/MeetingMinutes", + }, + ] - agenda_url = "https://pcb.illinois.gov/documents/dsweb/Get/Document-53692/" - assert parsed_items[14]["links"][0]["href"] == agenda_url - -@pytest.mark.parametrize("item", parsed_items) -def test_classification(item): - assert item["classification"] == BOARD +def test_classification(): + assert parsed_item["classification"] == BOARD @pytest.mark.parametrize("item", parsed_items)